shithub: zelda3

Download patch

ref: 4e12c5ae4f50be84fa644e3939b26b9066bbc4b7
parent: a89f5606f22437a42640507bf549056a3a841a3c
author: Snesrev <snesrev@protonmail.com>
date: Sun Sep 11 08:43:13 EDT 2022

Change Visual Studio directories

--- a/.gitignore
+++ b/.gitignore
@@ -5,9 +5,8 @@
 *.dSYM
 /*.vcxproj.user
 *.aps
-/Debug
-/Release
-/x64
+/obj/
+/bin/
 /tables/overworld/*.yaml
 /tables/dungeon/*.yaml
 /tables/img/
--- a/zelda3.vcxproj
+++ b/zelda3.vcxproj
@@ -66,9 +66,21 @@
   <PropertyGroup Label="UserMacros" />
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     <LinkIncremental>true</LinkIncremental>
+    <OutDir>$(SolutionDir)bin\$(Platform)-$(Configuration)\</OutDir>
+    <IntDir>$(SolutionDir)obj\$(Platform)-$(Configuration)\</IntDir>
   </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     <LinkIncremental>true</LinkIncremental>
+    <OutDir>$(SolutionDir)bin\$(Platform)-$(Configuration)\</OutDir>
+    <IntDir>$(SolutionDir)obj\$(Platform)-$(Configuration)\</IntDir>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <OutDir>$(SolutionDir)bin\$(Platform)-$(Configuration)\</OutDir>
+    <IntDir>$(SolutionDir)obj\$(Platform)-$(Configuration)\</IntDir>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <OutDir>$(SolutionDir)bin\$(Platform)-$(Configuration)\</OutDir>
+    <IntDir>$(SolutionDir)obj\$(Platform)-$(Configuration)\</IntDir>
   </PropertyGroup>
   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     <ClCompile>