mirror of https://github.com/stella-emu/stella.git
Updated Win32 port for recent Cart classname changes.
Fixed BSPF_ARCH macro to correctly detect i386 and x86_64 in Windows. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1898 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
f3282d299c
commit
82a87e6edb
|
@ -104,9 +104,9 @@
|
|||
|
||||
// CPU architecture type
|
||||
// This isn't complete yet, but takes care of all the major platforms
|
||||
#if defined(__i386__)
|
||||
#if defined(__i386__) || defined(_M_IX86)
|
||||
#define BSPF_ARCH "i386"
|
||||
#elif defined(__x86_64__)
|
||||
#elif defined(__x86_64__) || defined(_WIN64)
|
||||
#define BSPF_ARCH "x86_64"
|
||||
#elif defined(__powerpc__) || defined(__ppc__)
|
||||
#define BSPF_ARCH "ppc"
|
||||
|
|
|
@ -469,6 +469,10 @@
|
|||
RelativePath="..\emucore\CartEFSC.cxx"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\emucore\CartF0.cxx"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\emucore\CartF4.cxx"
|
||||
>
|
||||
|
@ -494,17 +498,13 @@
|
|||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\emucore\CartFASC.cxx"
|
||||
RelativePath="..\emucore\CartFA.cxx"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\emucore\CartFE.cxx"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\emucore\CartMB.cxx"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\emucore\CartMC.cxx"
|
||||
>
|
||||
|
@ -1087,6 +1087,10 @@
|
|||
RelativePath="..\emucore\CartEFSC.hxx"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\emucore\CartF0.hxx"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\emucore\CartF4.hxx"
|
||||
>
|
||||
|
@ -1112,17 +1116,13 @@
|
|||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\emucore\CartFASC.hxx"
|
||||
RelativePath="..\emucore\CartFA.hxx"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\emucore\CartFE.hxx"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\emucore\CartMB.hxx"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\emucore\CartMC.hxx"
|
||||
>
|
||||
|
|
Loading…
Reference in New Issue