mirror of https://github.com/stella-emu/stella.git
Check that bank is valid before switching to it.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@574 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
6e4bcb0fc8
commit
0dd6f51378
|
@ -13,7 +13,7 @@
|
||||||
// See the file "license" for information on usage and redistribution of
|
// See the file "license" for information on usage and redistribution of
|
||||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||||
//
|
//
|
||||||
// $Id: DebuggerParser.cxx,v 1.39 2005-06-27 15:07:43 urchlay Exp $
|
// $Id: DebuggerParser.cxx,v 1.40 2005-06-28 01:53:41 urchlay Exp $
|
||||||
//============================================================================
|
//============================================================================
|
||||||
|
|
||||||
#include "bspf.hxx"
|
#include "bspf.hxx"
|
||||||
|
@ -904,8 +904,8 @@ void DebuggerParser::executeA() {
|
||||||
|
|
||||||
// "bank"
|
// "bank"
|
||||||
void DebuggerParser::executeBank() {
|
void DebuggerParser::executeBank() {
|
||||||
|
int banks = debugger->bankCount();
|
||||||
if(argCount == 0) {
|
if(argCount == 0) {
|
||||||
int banks = debugger->bankCount();
|
|
||||||
commandResult += debugger->getCartType();
|
commandResult += debugger->getCartType();
|
||||||
commandResult += ": ";
|
commandResult += ": ";
|
||||||
if(banks < 2)
|
if(banks < 2)
|
||||||
|
@ -916,10 +916,15 @@ void DebuggerParser::executeBank() {
|
||||||
commandResult += debugger->valueToString(banks);
|
commandResult += debugger->valueToString(banks);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if(debugger->setBank(args[0]))
|
if(args[0] >= banks) {
|
||||||
|
commandResult += "invalid bank number (must be 0 to ";
|
||||||
|
commandResult += debugger->valueToString(banks - 1);
|
||||||
|
commandResult += ")";
|
||||||
|
} else if(debugger->setBank(args[0])) {
|
||||||
commandResult += "switched bank OK";
|
commandResult += "switched bank OK";
|
||||||
else
|
} else {
|
||||||
commandResult += "invalid bank number for cartridge";
|
commandResult += "unknown error switching banks";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue