From 12b18e5b718335caae7969c32f377a553ce72868 Mon Sep 17 00:00:00 2001 From: Stephen Anthony Date: Wed, 22 Aug 2018 10:17:53 -0230 Subject: [PATCH] Fix issue #363; too eager pruning in previous commit. --- src/emucore/OSystem.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/emucore/OSystem.cxx b/src/emucore/OSystem.cxx index 3363e1e99..133bcd014 100644 --- a/src/emucore/OSystem.cxx +++ b/src/emucore/OSystem.cxx @@ -453,6 +453,7 @@ unique_ptr OSystem::openConsole(const FilesystemNode& romfile, string& // Get a valid set of properties, including any entered on the commandline // For initial creation of the Cart, we're only concerned with the BS type Properties props; + myPropSet->getMD5(md5, props); // Local helper method auto CMDLINE_PROPS_UPDATE = [&](const string& name, PropertyType prop)