mirror of https://github.com/stella-emu/stella.git
Add a bunch of missing overrides.
This commit is contained in:
parent
2b285060fe
commit
53a2d59e02
|
@ -60,11 +60,11 @@ class CartridgeMNetworkWidget : public CartDebugWidget
|
||||||
void saveOldState() override;
|
void saveOldState() override;
|
||||||
void loadConfig() override;
|
void loadConfig() override;
|
||||||
void handleCommand(CommandSender* sender, int cmd, int data, int id) override;
|
void handleCommand(CommandSender* sender, int cmd, int data, int id) override;
|
||||||
string bankState();
|
string bankState() override;
|
||||||
// start of functions for Cartridge RAM tab
|
// start of functions for Cartridge RAM tab
|
||||||
uInt32 internalRamSize() override;
|
uInt32 internalRamSize() override;
|
||||||
uInt32 internalRamRPort(int start) override;
|
uInt32 internalRamRPort(int start) override;
|
||||||
string internalRamDescription();
|
string internalRamDescription() override;
|
||||||
const ByteArray& internalRamOld(int start, int count) override;
|
const ByteArray& internalRamOld(int start, int count) override;
|
||||||
const ByteArray& internalRamCurrent(int start, int count) override;
|
const ByteArray& internalRamCurrent(int start, int count) override;
|
||||||
void internalRamSetValue(int addr, uInt8 value) override;
|
void internalRamSetValue(int addr, uInt8 value) override;
|
||||||
|
|
|
@ -74,7 +74,7 @@ class CartridgeE7 : public CartridgeMNetwork
|
||||||
/**
|
/**
|
||||||
Query the size of the BS type.
|
Query the size of the BS type.
|
||||||
*/
|
*/
|
||||||
uInt32 romSize();
|
uInt32 romSize() override;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Check hotspots and switch bank if triggered.
|
Check hotspots and switch bank if triggered.
|
||||||
|
|
|
@ -72,7 +72,7 @@ class CartridgeE78K : public CartridgeMNetwork
|
||||||
/**
|
/**
|
||||||
Query the size of the BS type.
|
Query the size of the BS type.
|
||||||
*/
|
*/
|
||||||
uInt32 romSize();
|
uInt32 romSize() override;
|
||||||
/**
|
/**
|
||||||
Check hotspots and switch bank if triggered.
|
Check hotspots and switch bank if triggered.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue