diff options
-rw-r--r-- | engines/kyra/resource.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/resource.cpp b/engines/kyra/resource.cpp index 2aaa49f6d4..fa1da6a814 100644 --- a/engines/kyra/resource.cpp +++ b/engines/kyra/resource.cpp @@ -56,7 +56,7 @@ bool Resource::reset() { if (_vm->game() != GI_KYRA3) { if (!loadPakFile(StaticResource::staticDataFilename()) || !StaticResource::checkKyraDat()) { Common::String errorMessage = "You're missing the '" + StaticResource::staticDataFilename() + "' file or it got corrupted, (re)get it from the ScummVM website"; - GUI::MessageDialog errorMsg(errorMessage); + ::GUI::MessageDialog errorMsg(errorMessage); errorMsg.runModal(); error(errorMessage.c_str()); } |