mirror of https://github.com/stella-emu/stella.git
Updated VS project file for Variant class, and fixed a small warning.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2727 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
7de6bbd99b
commit
1634336dae
|
@ -174,7 +174,7 @@ LauncherDialog::LauncherDialog(OSystem* osystem, DialogContainer* parent,
|
|||
mySelectedItem = 0; // Highlight 'Rom Listing'
|
||||
|
||||
// Create an options dialog, similar to the in-game one
|
||||
myOptions = new OptionsDialog(osystem, parent, this, w * 0.8, h * 0.8, true);
|
||||
myOptions = new OptionsDialog(osystem, parent, this, int(w * 0.8), int(h * 0.8), true);
|
||||
|
||||
// Create a game list, which contains all the information about a ROM that
|
||||
// the launcher needs
|
||||
|
|
|
@ -467,6 +467,7 @@ SDLmain.lib
|
|||
<ClInclude Include="..\common\tv_filters\atari_ntsc.h" />
|
||||
<ClInclude Include="..\common\tv_filters\atari_ntsc_impl.h" />
|
||||
<ClInclude Include="..\common\tv_filters\NTSCFilter.hxx" />
|
||||
<ClInclude Include="..\common\Variant.hxx" />
|
||||
<ClInclude Include="..\common\ZipHandler.hxx" />
|
||||
<ClInclude Include="..\debugger\gui\BoosterWidget.hxx" />
|
||||
<ClInclude Include="..\debugger\gui\Cart0840Widget.hxx" />
|
||||
|
|
|
@ -1439,6 +1439,9 @@
|
|||
<ClInclude Include="..\gui\FileListWidget.hxx">
|
||||
<Filter>Header Files\gui</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\common\Variant.hxx">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="stella.ico">
|
||||
|
|
Loading…
Reference in New Issue