gba: muck up timer union (breaks savestates), add msvs rule to copy dll to bizhawk.multiclient/output/dll/libmeteor.dll
This commit is contained in:
parent
09c0269489
commit
890b7c354e
Binary file not shown.
|
@ -61,10 +61,10 @@ namespace AMeteor
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
unsigned int prescaler : 2;
|
unsigned int prescaler : 2;
|
||||||
bool countup : 1;
|
unsigned int countup : 1;
|
||||||
unsigned int unused1 : 3;
|
unsigned int unused1 : 3;
|
||||||
bool irq : 1;
|
unsigned int irq : 1;
|
||||||
bool start : 1;
|
unsigned int start : 1;
|
||||||
unsigned int unused2 : 8;
|
unsigned int unused2 : 8;
|
||||||
} b;
|
} b;
|
||||||
};
|
};
|
||||||
|
|
|
@ -58,6 +58,9 @@
|
||||||
<SubSystem>Windows</SubSystem>
|
<SubSystem>Windows</SubSystem>
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
</Link>
|
</Link>
|
||||||
|
<PostBuildEvent>
|
||||||
|
<Command>copy /y $(TargetDir)$(TargetFileName) $(ProjectDir)..\Bizhawk.MultiClient\output\dll\$(TargetFileName)</Command>
|
||||||
|
</PostBuildEvent>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
|
@ -76,6 +79,9 @@
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
</Link>
|
</Link>
|
||||||
|
<PostBuildEvent>
|
||||||
|
<Command>copy /y $(TargetDir)$(TargetFileName) $(ProjectDir)..\Bizhawk.MultiClient\output\dll\$(TargetFileName)</Command>
|
||||||
|
</PostBuildEvent>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="cinterface.cpp" />
|
<ClCompile Include="cinterface.cpp" />
|
||||||
|
|
Loading…
Reference in New Issue