mirror of https://github.com/stella-emu/stella.git
Fix compile error from last commit.
This commit is contained in:
parent
7584558746
commit
afe4be3510
|
@ -94,9 +94,11 @@ class Cartridge3EPlus: public Cartridge3E
|
||||||
@param size The size of the ROM image
|
@param size The size of the ROM image
|
||||||
@param md5 The md5sum of the ROM image
|
@param md5 The md5sum of the ROM image
|
||||||
@param settings A reference to the various settings (read-only)
|
@param settings A reference to the various settings (read-only)
|
||||||
|
@param bsSize The size specified by the bankswitching scheme
|
||||||
|
(where 0 means variable-sized ROM)
|
||||||
*/
|
*/
|
||||||
Cartridge3EPlus(const ByteBuffer& image, size_t size, const string& md5,
|
Cartridge3EPlus(const ByteBuffer& image, size_t size, const string& md5,
|
||||||
const Settings& settings);
|
const Settings& settings, size_t bsSize = 0);
|
||||||
virtual ~Cartridge3EPlus() = default;
|
virtual ~Cartridge3EPlus() = default;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
Loading…
Reference in New Issue