diff --git a/src/common/Version.hxx b/src/common/Version.hxx index 569ef060e..ec5610431 100644 --- a/src/common/Version.hxx +++ b/src/common/Version.hxx @@ -19,6 +19,6 @@ #define VERSION_HXX #define STELLA_VERSION "6.2" -#define STELLA_BUILD "5996" +#define STELLA_BUILD "6000" #endif diff --git a/src/emucore/CartEnhanced.cxx b/src/emucore/CartEnhanced.cxx index 363ffcd59..c809cfab6 100644 --- a/src/emucore/CartEnhanced.cxx +++ b/src/emucore/CartEnhanced.cxx @@ -33,7 +33,8 @@ CartridgeEnhanced::CartridgeEnhanced(const ByteBuffer& image, size_t size, if(size > bsSize) { ostringstream buf; - buf << "ROM larger than expected (" << size << " > " << bsSize << "), truncating\n"; + buf << "ROM larger than expected (" << size << " > " << bsSize + << "), truncating " << (size - bsSize) << " bytes\n"; Logger::info(buf.str()); size = bsSize;