mirror of https://github.com/stella-emu/stella.git
Some cleanup of redundant spacing. Now that I'm free for basically the next month,
I'll be starting work on Stella again. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@3233 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
bfdaeadd55
commit
47911eff21
|
@ -143,7 +143,7 @@ class SoundNull : public Sound
|
|||
{
|
||||
out.putString("TIASound");
|
||||
|
||||
for(int = 0; i < 6; ++i)
|
||||
for(int i = 0; i < 6; ++i)
|
||||
out.putByte(0);
|
||||
|
||||
// myLastRegisterSetCycle
|
||||
|
@ -164,7 +164,7 @@ class SoundNull : public Sound
|
|||
return false;
|
||||
|
||||
// Read sound registers and discard
|
||||
for(int = 0; i < 6; ++i)
|
||||
for(int i = 0; i < 6; ++i)
|
||||
in.getByte();
|
||||
|
||||
// myLastRegisterSetCycle
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
Cartridge0840::Cartridge0840(const uInt8* image, uInt32 size, const Settings& settings)
|
||||
: Cartridge(settings)
|
||||
: Cartridge(settings),
|
||||
myCurrentBank(0)
|
||||
{
|
||||
// Copy the ROM image into my buffer
|
||||
memcpy(myImage, image, BSPF_min(8192u, size));
|
||||
|
|
|
@ -46,7 +46,6 @@ class EventMappingWidget : public Widget, public CommandSender
|
|||
const StringList& actions, EventMode mode);
|
||||
~EventMappingWidget();
|
||||
|
||||
|
||||
bool remapMode() { return myRemapStatus; }
|
||||
|
||||
void setDefaults();
|
||||
|
|
Loading…
Reference in New Issue