mirror of https://github.com/stella-emu/stella.git
Add new 'Repository' files to VS project.
This commit is contained in:
parent
b336420eca
commit
73d8ec10ee
|
@ -33,7 +33,7 @@ Widget::Widget(GuiObject* boss, const GUI::Font& font,
|
||||||
: GuiObject(boss->instance(), boss->parent(), boss->dialog(), x, y, w, h),
|
: GuiObject(boss->instance(), boss->parent(), boss->dialog(), x, y, w, h),
|
||||||
_boss(boss),
|
_boss(boss),
|
||||||
_font(font),
|
_font(font),
|
||||||
_id(-1),
|
_id(0),
|
||||||
_flags(0),
|
_flags(0),
|
||||||
_hasFocus(false),
|
_hasFocus(false),
|
||||||
_bgcolor(kWidColor),
|
_bgcolor(kWidColor),
|
||||||
|
|
|
@ -308,7 +308,7 @@ static void update_variables(bool init = false)
|
||||||
setting_phosphor_blend = value;
|
setting_phosphor_blend = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
RETRO_GET("stella_paddle_joypad_sensitivity")
|
RETRO_GET("stella_paddle_joypad_sensitivity")
|
||||||
{
|
{
|
||||||
int value = 0;
|
int value = 0;
|
||||||
|
@ -354,7 +354,7 @@ static bool reset_system()
|
||||||
|
|
||||||
// reset libretro window, apply post-boot settings
|
// reset libretro window, apply post-boot settings
|
||||||
update_variables(false);
|
update_variables(false);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -381,6 +381,7 @@
|
||||||
<ClCompile Include="..\common\PhysicalJoystick.cxx" />
|
<ClCompile Include="..\common\PhysicalJoystick.cxx" />
|
||||||
<ClCompile Include="..\common\PJoystickHandler.cxx" />
|
<ClCompile Include="..\common\PJoystickHandler.cxx" />
|
||||||
<ClCompile Include="..\common\PKeyboardHandler.cxx" />
|
<ClCompile Include="..\common\PKeyboardHandler.cxx" />
|
||||||
|
<ClCompile Include="..\common\repository\KeyValueRepositoryConfigfile.cxx" />
|
||||||
<ClCompile Include="..\common\RewindManager.cxx" />
|
<ClCompile Include="..\common\RewindManager.cxx" />
|
||||||
<ClCompile Include="..\common\StaggeredLogger.cxx" />
|
<ClCompile Include="..\common\StaggeredLogger.cxx" />
|
||||||
<ClCompile Include="..\common\StateManager.cxx" />
|
<ClCompile Include="..\common\StateManager.cxx" />
|
||||||
|
@ -1075,6 +1076,9 @@
|
||||||
<ClInclude Include="..\common\PhysicalJoystick.hxx" />
|
<ClInclude Include="..\common\PhysicalJoystick.hxx" />
|
||||||
<ClInclude Include="..\common\PJoystickHandler.hxx" />
|
<ClInclude Include="..\common\PJoystickHandler.hxx" />
|
||||||
<ClInclude Include="..\common\PKeyboardHandler.hxx" />
|
<ClInclude Include="..\common\PKeyboardHandler.hxx" />
|
||||||
|
<ClInclude Include="..\common\repository\KeyValueRepository.hxx" />
|
||||||
|
<ClInclude Include="..\common\repository\KeyValueRepositoryConfigfile.hxx" />
|
||||||
|
<ClInclude Include="..\common\repository\KeyValueRepositoryNoop.hxx" />
|
||||||
<ClInclude Include="..\common\RewindManager.hxx" />
|
<ClInclude Include="..\common\RewindManager.hxx" />
|
||||||
<ClInclude Include="..\common\StaggeredLogger.hxx" />
|
<ClInclude Include="..\common\StaggeredLogger.hxx" />
|
||||||
<ClInclude Include="..\common\StateManager.hxx" />
|
<ClInclude Include="..\common\StateManager.hxx" />
|
||||||
|
@ -1399,4 +1403,4 @@
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<ImportGroup Label="ExtensionTargets">
|
<ImportGroup Label="ExtensionTargets">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
|
@ -64,6 +64,12 @@
|
||||||
<Filter Include="Header Files\emucore\exception">
|
<Filter Include="Header Files\emucore\exception">
|
||||||
<UniqueIdentifier>{fb5429b5-4ffb-4574-a98d-54ba865e4199}</UniqueIdentifier>
|
<UniqueIdentifier>{fb5429b5-4ffb-4574-a98d-54ba865e4199}</UniqueIdentifier>
|
||||||
</Filter>
|
</Filter>
|
||||||
|
<Filter Include="Header Files\repository">
|
||||||
|
<UniqueIdentifier>{6960ed3f-a5e0-4af6-af20-e9308167ae63}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Source Files\repository">
|
||||||
|
<UniqueIdentifier>{1aab46fa-ee39-415d-9e41-d5ad3ee14ce7}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\common\FrameBufferSDL2.cxx">
|
<ClCompile Include="..\common\FrameBufferSDL2.cxx">
|
||||||
|
@ -960,6 +966,9 @@
|
||||||
<ClCompile Include="..\gui\MinUICommandDialog.cxx">
|
<ClCompile Include="..\gui\MinUICommandDialog.cxx">
|
||||||
<Filter>Source Files\gui</Filter>
|
<Filter>Source Files\gui</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\common\repository\KeyValueRepositoryConfigfile.cxx">
|
||||||
|
<Filter>Source Files\repository</Filter>
|
||||||
|
</ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="..\common\bspf.hxx">
|
<ClInclude Include="..\common\bspf.hxx">
|
||||||
|
@ -1964,6 +1973,15 @@
|
||||||
<ClInclude Include="..\gui\MinUICommandDialog.hxx">
|
<ClInclude Include="..\gui\MinUICommandDialog.hxx">
|
||||||
<Filter>Header Files\gui</Filter>
|
<Filter>Header Files\gui</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\common\repository\KeyValueRepository.hxx">
|
||||||
|
<Filter>Header Files\repository</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\common\repository\KeyValueRepositoryConfigfile.hxx">
|
||||||
|
<Filter>Header Files\repository</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="..\common\repository\KeyValueRepositoryNoop.hxx">
|
||||||
|
<Filter>Header Files\repository</Filter>
|
||||||
|
</ClInclude>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="stella.ico">
|
<None Include="stella.ico">
|
||||||
|
@ -1976,4 +1994,4 @@
|
||||||
<Filter>Resource Files</Filter>
|
<Filter>Resource Files</Filter>
|
||||||
</ResourceCompile>
|
</ResourceCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
Loading…
Reference in New Issue