Cleanup some whitespace issues.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@3254 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2016-01-23 18:16:09 +00:00
parent 143b22baec
commit ed766b5bb2
47 changed files with 81 additions and 86 deletions

View File

@ -153,12 +153,9 @@ void CartridgeCMWidget::saveOldState()
myOldState.column = myCart.column();
myOldState.internalram.clear();
for(uInt32 i = 0; i < this->internalRamSize();i++)
{
myOldState.internalram.push_back(myCart.myRAM[i]);
}
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void CartridgeCMWidget::loadConfig()

View File

@ -130,10 +130,8 @@ uInt8 CartridgeCV::peek(uInt16 address)
}
}
else
{
return myImage[address & 0x07FF];
}
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
bool CartridgeCV::poke(uInt16, uInt8)