mirror of https://github.com/stella-emu/stella.git
Fixed a few compiler warnings, and bumped version # for final release.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2240 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
87e3a71580
commit
670b61a15a
|
@ -22,7 +22,7 @@
|
|||
|
||||
#include <cstdlib>
|
||||
|
||||
#define STELLA_VERSION "3.4_rc1"
|
||||
#define STELLA_VERSION "3.4"
|
||||
#define STELLA_BUILD atoi("$Rev$" + 6)
|
||||
|
||||
#endif
|
||||
|
|
|
@ -47,6 +47,8 @@
|
|||
#define CALL_METHOD(method) ( (this->*method)() )
|
||||
|
||||
|
||||
// TODO - use C++ streams instead of nasty C-strings and pointers
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
DebuggerParser::DebuggerParser(Debugger* d)
|
||||
: debugger(d)
|
||||
|
|
|
@ -2121,7 +2121,7 @@ case 0x20:
|
|||
poke(0x0100 + SP--, PC >> 8);
|
||||
poke(0x0100 + SP--, PC & 0xff);
|
||||
|
||||
PC = low | ((uInt16)peek(PC++, DISASM_CODE) << 8);
|
||||
PC = (low | ((uInt16)peek(PC, DISASM_CODE) << 8));
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
|
@ -642,7 +642,7 @@ define(M6502_JSR, `{
|
|||
poke(0x0100 + SP--, PC >> 8);
|
||||
poke(0x0100 + SP--, PC & 0xff);
|
||||
|
||||
PC = low | ((uInt16)peek(PC++, DISASM_CODE) << 8);
|
||||
PC = (low | ((uInt16)peek(PC, DISASM_CODE) << 8));
|
||||
}')
|
||||
|
||||
define(M6502_LAS, `{
|
||||
|
|
Loading…
Reference in New Issue