mirror of https://github.com/stella-emu/stella.git
fixed a minor bank usage init inconsistency
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2903 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
abdd770e38
commit
053ce36518
|
@ -104,7 +104,7 @@ void CartridgeDASH::install(System& system) {
|
|||
|
||||
// Initialise bank values for the 4x 1K bank areas
|
||||
// This is used to reverse-lookup from address to bank location
|
||||
for (uInt32 b = 0; b < 3; b++)
|
||||
for (uInt32 b = 0; b < 4; b++)
|
||||
bankInUse[b] = BANK_UNDEFINED; // bank is undefined and inaccessible!
|
||||
|
||||
// Install pages for the startup bank into the first segment
|
||||
|
|
Loading…
Reference in New Issue