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");
|
out.putString("TIASound");
|
||||||
|
|
||||||
for(int = 0; i < 6; ++i)
|
for(int i = 0; i < 6; ++i)
|
||||||
out.putByte(0);
|
out.putByte(0);
|
||||||
|
|
||||||
// myLastRegisterSetCycle
|
// myLastRegisterSetCycle
|
||||||
|
@ -164,7 +164,7 @@ class SoundNull : public Sound
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// Read sound registers and discard
|
// Read sound registers and discard
|
||||||
for(int = 0; i < 6; ++i)
|
for(int i = 0; i < 6; ++i)
|
||||||
in.getByte();
|
in.getByte();
|
||||||
|
|
||||||
// myLastRegisterSetCycle
|
// myLastRegisterSetCycle
|
||||||
|
|
|
@ -24,7 +24,8 @@
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
Cartridge0840::Cartridge0840(const uInt8* image, uInt32 size, const Settings& settings)
|
Cartridge0840::Cartridge0840(const uInt8* image, uInt32 size, const Settings& settings)
|
||||||
: Cartridge(settings)
|
: Cartridge(settings),
|
||||||
|
myCurrentBank(0)
|
||||||
{
|
{
|
||||||
// Copy the ROM image into my buffer
|
// Copy the ROM image into my buffer
|
||||||
memcpy(myImage, image, BSPF_min(8192u, size));
|
memcpy(myImage, image, BSPF_min(8192u, size));
|
||||||
|
|
|
@ -46,7 +46,6 @@ class EventMappingWidget : public Widget, public CommandSender
|
||||||
const StringList& actions, EventMode mode);
|
const StringList& actions, EventMode mode);
|
||||||
~EventMappingWidget();
|
~EventMappingWidget();
|
||||||
|
|
||||||
|
|
||||||
bool remapMode() { return myRemapStatus; }
|
bool remapMode() { return myRemapStatus; }
|
||||||
|
|
||||||
void setDefaults();
|
void setDefaults();
|
||||||
|
|
Loading…
Reference in New Issue