From 04b87e1dcc43a7cfccb82ad1d0c99e2b6e4772f9 Mon Sep 17 00:00:00 2001 From: Rachel Bryk Date: Mon, 23 Dec 2013 07:18:28 -0500 Subject: [PATCH] Change a PanicAlert to OSD message. --- Source/Core/Core/Src/Movie.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/Src/Movie.cpp b/Source/Core/Core/Src/Movie.cpp index cc5b099ee0..9868efbf09 100644 --- a/Source/Core/Core/Src/Movie.cpp +++ b/Source/Core/Core/Src/Movie.cpp @@ -1216,7 +1216,7 @@ void CheckMD5() if (memcmp(gameMD5,MD5,16) == 0) Core::DisplayMessage("Checksum of current game matches the recorded game.", 2000); else - PanicAlert("Checksum of current game does not match the recorded game!"); + Core::DisplayMessage("Checksum of current game does not match the recorded game!", 3000); } void GetMD5()