mirror of
https://github.com/libretro/beetle-pce-fast-libretro.git
synced 2024-11-23 16:00:08 +00:00
(MSVC PCE Fast) Fix MSVC 2010 solution
This commit is contained in:
parent
1ac3777cdc
commit
f3d083b275
@ -20,7 +20,7 @@
|
||||
#include "pce.h"
|
||||
#include <errno.h>
|
||||
#include "pcecd.h"
|
||||
#include "arcade_card/arcade_card.h"
|
||||
#include "../hw_misc/arcade_card/arcade_card.h"
|
||||
#include "../md5.h"
|
||||
#include "../file.h"
|
||||
#include "../cdrom/cdromif.h"
|
||||
|
@ -23,7 +23,7 @@
|
||||
#include "pcecd.h"
|
||||
#include "pcecd_drive.h"
|
||||
#include "hes.h"
|
||||
#include "arcade_card/arcade_card.h"
|
||||
#include "../hw_misc/arcade_card/arcade_card.h"
|
||||
#include "../mempatcher.h"
|
||||
#include "../cdrom/cdromif.h"
|
||||
|
||||
|
@ -38,10 +38,10 @@
|
||||
<ClCompile Include="..\..\..\mednafen\cdrom\galois.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\cdrom\l-ec.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\cdrom\lec.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\cdrom\pcecd.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\cdrom\recover-raw.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\cdrom\scsicd.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\cdrom\SimpleFIFO.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\cputest\cputest.c" />
|
||||
<ClCompile Include="..\..\..\mednafen\endian.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\error.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\file.cpp" />
|
||||
@ -58,12 +58,16 @@
|
||||
<ClCompile Include="..\..\..\mednafen\MemoryStream.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\mempatcher.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\okiadpcm.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast\huc.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast\huc6280.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast\input.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast\pce.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast\tsushin.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast\vdc.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast-09333\hes.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast-09333\huc.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast-09333\huc6280.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast-09333\input.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast-09333\pce.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast-09333\pcecd.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast-09333\pcecd_drive.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast-09333\psg.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast-09333\vdc.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\player.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\settings.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\sound\Blip_Buffer.cpp" />
|
||||
<ClCompile Include="..\..\..\mednafen\sound\Stereo_Buffer.cpp" />
|
||||
@ -299,7 +303,7 @@
|
||||
<BufferSecurityCheck>false</BufferSecurityCheck>
|
||||
<PrecompiledHeaderOutputFile>$(OutDir)$(ProjectName).pch</PrecompiledHeaderOutputFile>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PreprocessorDefinitions>_DEBUG;_XBOX;_LIB;MSB_FIRST;WANT_PCE_FAST_EMU;WANT_32BPP;SIZEOF_DOUBLE=8;MEDNAFEN_VERSION=0.9.26;MPC_FIXED_POINT;__LIBRETRO__;_LOW_ACCURACY;WANT_STEREO_SOUND;FRONTEND_SUPPORTS_RGB565;PSS_STYLE=2;MEDNAFEN_VERSION_NUMERIC=926;BYTE_ORDER=1;NEED_CD;WANT_CRC32;%(PreprocessorDefinitions);WANT_THREADING</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>_DEBUG;_XBOX;_LIB;MSB_FIRST;WANT_PCE_FAST_EMU;WANT_16BPP;SIZEOF_DOUBLE=8;MEDNAFEN_VERSION=0.9.26;MPC_FIXED_POINT;__LIBRETRO__;_LOW_ACCURACY;WANT_STEREO_SOUND;FRONTEND_SUPPORTS_RGB565;PSS_STYLE=2;MEDNAFEN_VERSION_NUMERIC=926;BYTE_ORDER=1;NEED_CD;WANT_CRC32;%(PreprocessorDefinitions);WANT_THREADING;WANT_NEW_API</PreprocessorDefinitions>
|
||||
<CallAttributedProfiling>Callcap</CallAttributedProfiling>
|
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..\;$(SolutionDir)\..\..\mednafen;$(SolutionDir)\..\..\mednafen\cdrom;$(SolutionDir)\..\..\mednafen\include;$(SolutionDir)\..\..\mednafen\sound;$(SolutionDir)\..\..\mednafen\ngp;$(SolutionDir)\..\..\mednafen\hw_cpu;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
@ -319,7 +323,7 @@
|
||||
<BufferSecurityCheck>false</BufferSecurityCheck>
|
||||
<PrecompiledHeaderOutputFile>$(OutDir)$(ProjectName).pch</PrecompiledHeaderOutputFile>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
<PreprocessorDefinitions>_DEBUG;_XBOX;_LIB;MSB_FIRST;WANT_PCE_FAST_EMU;WANT_32BPP;SIZEOF_DOUBLE=8;MEDNAFEN_VERSION=0.9.26;MPC_FIXED_POINT;__LIBRETRO__;_LOW_ACCURACY;WANT_STEREO_SOUND;FRONTEND_SUPPORTS_RGB565;PSS_STYLE=2;MEDNAFEN_VERSION_NUMERIC=926;BYTE_ORDER=1;NEED_CD;WANT_CRC32;%(PreprocessorDefinitions);WANT_THREADING</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>_DEBUG;_XBOX;_LIB;MSB_FIRST;WANT_PCE_FAST_EMU;WANT_16BPP;SIZEOF_DOUBLE=8;MEDNAFEN_VERSION=0.9.26;MPC_FIXED_POINT;__LIBRETRO__;_LOW_ACCURACY;WANT_STEREO_SOUND;FRONTEND_SUPPORTS_RGB565;PSS_STYLE=2;MEDNAFEN_VERSION_NUMERIC=926;BYTE_ORDER=1;NEED_CD;WANT_CRC32;%(PreprocessorDefinitions);WANT_THREADING;WANT_NEW_API</PreprocessorDefinitions>
|
||||
<CallAttributedProfiling>Callcap</CallAttributedProfiling>
|
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..\;$(SolutionDir)\..\..\mednafen;$(SolutionDir)\..\..\mednafen\cdrom;$(SolutionDir)\..\..\mednafen\include;$(SolutionDir)\..\..\mednafen\sound;$(SolutionDir)\..\..\mednafen\ngp;$(SolutionDir)\..\..\mednafen\hw_cpu;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
@ -340,7 +344,7 @@
|
||||
<BufferSecurityCheck>false</BufferSecurityCheck>
|
||||
<PrecompiledHeaderOutputFile>$(OutDir)$(ProjectName).pch</PrecompiledHeaderOutputFile>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<PreprocessorDefinitions>NDEBUG;_XBOX;PROFILE;_LIB;MSB_FIRST;WANT_PCE_FAST_EMU;WANT_32BPP;SIZEOF_DOUBLE=8;MEDNAFEN_VERSION=0.9.26;MPC_FIXED_POINT;__LIBRETRO__;_LOW_ACCURACY;WANT_STEREO_SOUND;FRONTEND_SUPPORTS_RGB565;PSS_STYLE=2;MEDNAFEN_VERSION_NUMERIC=926;BYTE_ORDER=1;NEED_CD;WANT_CRC32;%(PreprocessorDefinitions);WANT_THREADING</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>NDEBUG;_XBOX;PROFILE;_LIB;MSB_FIRST;WANT_PCE_FAST_EMU;WANT_16BPP;SIZEOF_DOUBLE=8;MEDNAFEN_VERSION=0.9.26;MPC_FIXED_POINT;__LIBRETRO__;_LOW_ACCURACY;WANT_STEREO_SOUND;FRONTEND_SUPPORTS_RGB565;PSS_STYLE=2;MEDNAFEN_VERSION_NUMERIC=926;BYTE_ORDER=1;NEED_CD;WANT_CRC32;%(PreprocessorDefinitions);WANT_THREADING;WANT_NEW_API</PreprocessorDefinitions>
|
||||
<CallAttributedProfiling>Callcap</CallAttributedProfiling>
|
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..\;$(SolutionDir)\..\..\mednafen;$(SolutionDir)\..\..\mednafen\cdrom;$(SolutionDir)\..\..\mednafen\include;$(SolutionDir)\..\..\mednafen\sound;$(SolutionDir)\..\..\mednafen\ngp;$(SolutionDir)\..\..\mednafen\hw_cpu;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
@ -365,7 +369,7 @@
|
||||
<BufferSecurityCheck>false</BufferSecurityCheck>
|
||||
<PrecompiledHeaderOutputFile>$(OutDir)$(ProjectName).pch</PrecompiledHeaderOutputFile>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<PreprocessorDefinitions>NDEBUG;_XBOX;PROFILE;FASTCAP;_LIB;MSB_FIRST;WANT_PCE_FAST_EMU;WANT_32BPP;SIZEOF_DOUBLE=8;MEDNAFEN_VERSION=0.9.26;MPC_FIXED_POINT;__LIBRETRO__;_LOW_ACCURACY;WANT_STEREO_SOUND;FRONTEND_SUPPORTS_RGB565;PSS_STYLE=2;MEDNAFEN_VERSION_NUMERIC=926;BYTE_ORDER=1;NEED_CD;WANT_CRC32;%(PreprocessorDefinitions);WANT_THREADING</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>NDEBUG;_XBOX;PROFILE;FASTCAP;_LIB;MSB_FIRST;WANT_PCE_FAST_EMU;WANT_16BPP;SIZEOF_DOUBLE=8;MEDNAFEN_VERSION=0.9.26;MPC_FIXED_POINT;__LIBRETRO__;_LOW_ACCURACY;WANT_STEREO_SOUND;FRONTEND_SUPPORTS_RGB565;PSS_STYLE=2;MEDNAFEN_VERSION_NUMERIC=926;BYTE_ORDER=1;NEED_CD;WANT_CRC32;%(PreprocessorDefinitions);WANT_THREADING;WANT_NEW_API</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..\;$(SolutionDir)\..\..\mednafen;$(SolutionDir)\..\..\mednafen\cdrom;$(SolutionDir)\..\..\mednafen\include;$(SolutionDir)\..\..\mednafen\sound;$(SolutionDir)\..\..\mednafen\ngp;$(SolutionDir)\..\..\mednafen\hw_cpu;$(SolutionDir)\..\..\mednafen\hw_misc;$(SolutionDir)\..\..\mednafen\hw_sound;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
@ -387,7 +391,7 @@
|
||||
<BufferSecurityCheck>false</BufferSecurityCheck>
|
||||
<PrecompiledHeaderOutputFile>$(OutDir)$(ProjectName).pch</PrecompiledHeaderOutputFile>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<PreprocessorDefinitions>NDEBUG;_XBOX;_LIB;MSB_FIRST;WANT_PCE_FAST_EMU;WANT_32BPP;SIZEOF_DOUBLE=8;MEDNAFEN_VERSION=0.9.26;MPC_FIXED_POINT;__LIBRETRO__;_LOW_ACCURACY;WANT_STEREO_SOUND;FRONTEND_SUPPORTS_RGB565;PSS_STYLE=2;MEDNAFEN_VERSION_NUMERIC=926;BYTE_ORDER=1;NEED_CD;WANT_CRC32;%(PreprocessorDefinitions);WANT_THREADING</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>NDEBUG;_XBOX;_LIB;MSB_FIRST;WANT_PCE_FAST_EMU;WANT_16BPP;SIZEOF_DOUBLE=8;MEDNAFEN_VERSION=0.9.26;MPC_FIXED_POINT;__LIBRETRO__;_LOW_ACCURACY;WANT_STEREO_SOUND;FRONTEND_SUPPORTS_RGB565;PSS_STYLE=2;MEDNAFEN_VERSION_NUMERIC=926;BYTE_ORDER=1;NEED_CD;WANT_CRC32;%(PreprocessorDefinitions);WANT_THREADING;WANT_NEW_API</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..\;$(SolutionDir)\..\..\mednafen;$(SolutionDir)\..\..\mednafen\cdrom;$(SolutionDir)\..\..\mednafen\include;$(SolutionDir)\..\..\mednafen\sound;$(SolutionDir)\..\..\mednafen\ngp;$(SolutionDir)\..\..\mednafen\hw_cpu;$(SolutionDir)\..\..\mednafen\hw_sound;$(SolutionDir)\..\..\mednafen\hw_video;$(SolutionDir)\..\..\mednafen\hw_misc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
@ -409,7 +413,7 @@
|
||||
<BufferSecurityCheck>false</BufferSecurityCheck>
|
||||
<PrecompiledHeaderOutputFile>$(OutDir)$(ProjectName).pch</PrecompiledHeaderOutputFile>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<PreprocessorDefinitions>NDEBUG;_XBOX;LTCG;_LIB;MSB_FIRST;WANT_PCE_FAST_EMU;WANT_32BPP;SIZEOF_DOUBLE=8;MEDNAFEN_VERSION=0.9.26;MPC_FIXED_POINT;__LIBRETRO__;_LOW_ACCURACY;WANT_STEREO_SOUND;FRONTEND_SUPPORTS_RGB565;PSS_STYLE=2;MEDNAFEN_VERSION_NUMERIC=926;BYTE_ORDER=1;NEED_CD;WANT_CRC32;%(PreprocessorDefinitions);WANT_THREADING</PreprocessorDefinitions>
|
||||
<PreprocessorDefinitions>NDEBUG;_XBOX;LTCG;_LIB;MSB_FIRST;WANT_PCE_FAST_EMU;WANT_16BPP;SIZEOF_DOUBLE=8;MEDNAFEN_VERSION=0.9.26;MPC_FIXED_POINT;__LIBRETRO__;_LOW_ACCURACY;WANT_STEREO_SOUND;FRONTEND_SUPPORTS_RGB565;PSS_STYLE=2;MEDNAFEN_VERSION_NUMERIC=926;BYTE_ORDER=1;NEED_CD;WANT_CRC32;%(PreprocessorDefinitions);WANT_THREADING;WANT_NEW_API</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(SolutionDir)\..\..\;$(SolutionDir)\..\..\mednafen;$(SolutionDir)\..\..\mednafen\cdrom;$(SolutionDir)\..\..\mednafen\include;$(SolutionDir)\..\..\mednafen\sound;$(SolutionDir)\..\..\mednafen\ngp;$(SolutionDir)\..\..\mednafen\hw_cpu;$(SolutionDir)\..\..\mednafen\hw_video;$(SolutionDir)\..\..\mednafen\hw_sound;$(SolutionDir)\..\..\mednafen\hw_misc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
@ -421,4 +425,4 @@
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
</Project>
|
@ -54,6 +54,9 @@
|
||||
<Filter Include="Source Files\mednafen\tremor">
|
||||
<UniqueIdentifier>{6e70f6f2-5174-46d4-9bd6-33725139e84c}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="Source Files\mednafen\cputest">
|
||||
<UniqueIdentifier>{f70d6936-5cd9-4fba-9309-a48fe85d6517}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\..\mednafen\Stream.cpp">
|
||||
@ -167,27 +170,6 @@
|
||||
<ClCompile Include="..\..\..\mednafen\hw_sound\pce_psg\pce_psg.cpp">
|
||||
<Filter>Source Files\mednafen\hw_sound\pce_psg</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\cdrom\pcecd.cpp">
|
||||
<Filter>Source Files\mednafen\cdrom</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast\vdc.cpp">
|
||||
<Filter>Source Files\mednafen\pce_fast</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast\huc6280.cpp">
|
||||
<Filter>Source Files\mednafen\pce_fast</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast\huc.cpp">
|
||||
<Filter>Source Files\mednafen\pce_fast</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast\input.cpp">
|
||||
<Filter>Source Files\mednafen\pce_fast</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast\pce.cpp">
|
||||
<Filter>Source Files\mednafen\pce_fast</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast\tsushin.cpp">
|
||||
<Filter>Source Files\mednafen\pce_fast</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\hw_video\huc6270\vdc_video.cpp">
|
||||
<Filter>Source Files\mednafen\hw_video\huc6270</Filter>
|
||||
</ClCompile>
|
||||
@ -248,5 +230,38 @@
|
||||
<ClCompile Include="..\..\..\mednafen\tremor\vorbisfile.c">
|
||||
<Filter>Source Files\mednafen\tremor</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\cputest\cputest.c">
|
||||
<Filter>Source Files\mednafen\cputest</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\player.cpp">
|
||||
<Filter>Source Files\mednafen</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast-09333\hes.cpp">
|
||||
<Filter>Source Files\mednafen\pce_fast</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast-09333\huc.cpp">
|
||||
<Filter>Source Files\mednafen\pce_fast</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast-09333\huc6280.cpp">
|
||||
<Filter>Source Files\mednafen\pce_fast</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast-09333\input.cpp">
|
||||
<Filter>Source Files\mednafen\pce_fast</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast-09333\pce.cpp">
|
||||
<Filter>Source Files\mednafen\pce_fast</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast-09333\pcecd.cpp">
|
||||
<Filter>Source Files\mednafen\pce_fast</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast-09333\pcecd_drive.cpp">
|
||||
<Filter>Source Files\mednafen\pce_fast</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast-09333\psg.cpp">
|
||||
<Filter>Source Files\mednafen\pce_fast</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\mednafen\pce_fast-09333\vdc.cpp">
|
||||
<Filter>Source Files\mednafen\pce_fast</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
</Project>
|
Loading…
Reference in New Issue
Block a user