Add a bunch of missing overrides.

This commit is contained in:
Christian Speckner 2017-11-30 01:22:41 +01:00
parent 2b285060fe
commit 53a2d59e02
3 changed files with 5 additions and 5 deletions

View File

@ -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;

View File

@ -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.

View File

@ -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.
*/ */