This commit is contained in:
thrust26 2020-04-01 22:14:36 +02:00
commit 3d7ff6638e
3 changed files with 3 additions and 3 deletions

View File

@ -148,7 +148,7 @@ class Cartridge : public Device
/** /**
Determine the bank's origin Determine the bank's origin
@param The bank to query @param bank The bank to query
@return The origin of the bank @return The origin of the bank
*/ */
uInt16 bankOrigin(uInt16 bank) const; uInt16 bankOrigin(uInt16 bank) const;

View File

@ -158,7 +158,7 @@ class Device : public Serializable
@return The access counters as comma separated string @return The access counters as comma separated string
*/ */
virtual string getAccessCounters() const { return ""; }; virtual string getAccessCounters() const { return ""; }
#endif #endif
protected: protected:

View File

@ -536,7 +536,7 @@ class TIA : public Device
@return The access counters as comma separated string @return The access counters as comma separated string
*/ */
string getAccessCounters() const; string getAccessCounters() const override;
#endif #endif
private: private: