diff options
| -rw-r--r-- | simon/simon.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index ba53b6f6a0..6614ceda4b 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -259,9 +259,9 @@ static const GameSpecificSettings simon2dos_settings = {  #endif  static const char* bad_versions[3] = { -	"27c8e7feada80c75b70b9c2f6088d519", // simon2dos (English)  	"465eed710cc242b2de7dc77edd467c4c", // simon1dos (English)  	"bed9134804d96f72afa152b8ec5628c3", // simon1dos (French) +	"27c8e7feada80c75b70b9c2f6088d519", // simon2dos (English)  };  SimonEngine::SimonEngine(GameDetector *detector, OSystem *syst) @@ -325,7 +325,7 @@ SimonEngine::SimonEngine(GameDetector *detector, OSystem *syst)  			for (int j = 0; j < 3; j++) {  				if (!strcmp(md5str, bad_versions[j])) -					error("Cracked version aren't supported"); +					error("Cracked versions aren't supported");  			}  			printf("%s  %s\n", md5str, buf);  | 
