I'm stupid

This commit is contained in:
Julian 2023-02-05 21:13:47 -05:00
parent e000bb610a
commit 048c6d67a1
Signed by: NotNite
GPG Key ID: BD91A5402CCEB08A
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net4.7.2</TargetFramework>
<Version>1.0.0</Version>
<Version>1.0.1</Version>
</PropertyGroup>
<ItemGroup>
<Reference Include="PresentationFramework" />

View File

@ -62,7 +62,7 @@ namespace DeezShade {
// File.Copy gives an access denied error, so let's make it ourself
var src = tempPath + "gshade-shaders";
var dst = gameInstall + "gshade-shaders";
var dst = Path.Combine(gameInstall, "gshade-shaders");
void RecursiveClone(string path) {
var path2 = Path.Combine(src, path);