mirror of https://github.com/stella-emu/stella.git
Updated Visual Studio for recent class removal.
Removed constexpr, since VC++ 2013 doesn't support it yet. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@3076 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
29fe39dd99
commit
f12732042a
|
@ -343,7 +343,7 @@ class M6502 : public Serializable
|
||||||
uInt16 myDataAddressForPoke;
|
uInt16 myDataAddressForPoke;
|
||||||
|
|
||||||
/// Indicates the number of system cycles per processor cycle
|
/// Indicates the number of system cycles per processor cycle
|
||||||
static constexpr uInt32 SYSTEM_CYCLES_PER_CPU = 1;
|
static const uInt32 SYSTEM_CYCLES_PER_CPU = 1;
|
||||||
|
|
||||||
#ifdef DEBUGGER_SUPPORT
|
#ifdef DEBUGGER_SUPPORT
|
||||||
Int32 evalCondBreaks() {
|
Int32 evalCondBreaks() {
|
||||||
|
|
|
@ -377,7 +377,6 @@
|
||||||
<ClCompile Include="..\debugger\gui\DebuggerDialog.cxx" />
|
<ClCompile Include="..\debugger\gui\DebuggerDialog.cxx" />
|
||||||
<ClCompile Include="..\debugger\DebuggerParser.cxx" />
|
<ClCompile Include="..\debugger\DebuggerParser.cxx" />
|
||||||
<ClCompile Include="..\debugger\DiStella.cxx" />
|
<ClCompile Include="..\debugger\DiStella.cxx" />
|
||||||
<ClCompile Include="..\debugger\PackedBitArray.cxx" />
|
|
||||||
<ClCompile Include="..\debugger\gui\PromptWidget.cxx" />
|
<ClCompile Include="..\debugger\gui\PromptWidget.cxx" />
|
||||||
<ClCompile Include="..\debugger\gui\RamWidget.cxx" />
|
<ClCompile Include="..\debugger\gui\RamWidget.cxx" />
|
||||||
<ClCompile Include="..\debugger\RiotDebug.cxx" />
|
<ClCompile Include="..\debugger\RiotDebug.cxx" />
|
||||||
|
|
|
@ -297,9 +297,6 @@
|
||||||
<ClCompile Include="..\debugger\DiStella.cxx">
|
<ClCompile Include="..\debugger\DiStella.cxx">
|
||||||
<Filter>Source Files\debugger</Filter>
|
<Filter>Source Files\debugger</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\debugger\PackedBitArray.cxx">
|
|
||||||
<Filter>Source Files\debugger</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\debugger\gui\PromptWidget.cxx">
|
<ClCompile Include="..\debugger\gui\PromptWidget.cxx">
|
||||||
<Filter>Source Files\debugger</Filter>
|
<Filter>Source Files\debugger</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
|
Loading…
Reference in New Issue