Fix compile error from last commit.

This commit is contained in:
Stephen Anthony 2020-06-11 12:02:50 -02:30
parent 7584558746
commit afe4be3510
1 changed files with 3 additions and 1 deletions

View File

@ -94,9 +94,11 @@ class Cartridge3EPlus: public Cartridge3E
@param size The size of the ROM image
@param md5 The md5sum of the ROM image
@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,
const Settings& settings);
const Settings& settings, size_t bsSize = 0);
virtual ~Cartridge3EPlus() = default;
public: