From 99d5087918d667b8531dabab6e4c989c03323c51 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Mon, 8 Aug 2011 14:46:12 +1000 Subject: SCUMM: Set default Benchmark speed in Moonbase Commander, based on the original Moonbase.ini. --- engines/scumm/he/script_v80he.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/engines/scumm/he/script_v80he.cpp b/engines/scumm/he/script_v80he.cpp index 7970d7806f..9711f6415b 100644 --- a/engines/scumm/he/script_v80he.cpp +++ b/engines/scumm/he/script_v80he.cpp @@ -171,7 +171,10 @@ void ScummEngine_v80he::o80_readConfigFile() { case 6: // number ConfFile.getKey((const char *)option, (const char *)section, entry); - push(atoi(entry.c_str())); + if (!strcmp((char *)option, "Benchmark")) + push(2); + else + push(atoi(entry.c_str())); break; case 77: // HE 100 case 7: // string -- cgit v1.2.3