diff options
author | Johannes Schickel | 2008-04-04 09:16:25 +0000 |
---|---|---|
committer | Johannes Schickel | 2008-04-04 09:16:25 +0000 |
commit | 05e2b6696730fe0abb177d57725dd0db7ff12085 (patch) | |
tree | f6cb5bff68c79727514e418471592ea69cbc62f3 /engines/kyra | |
parent | 0aecc4fb037c64ac49284d896ca2195a0e4b4ed3 (diff) | |
download | scummvm-rg350-05e2b6696730fe0abb177d57725dd0db7ff12085.tar.gz scummvm-rg350-05e2b6696730fe0abb177d57725dd0db7ff12085.tar.bz2 scummvm-rg350-05e2b6696730fe0abb177d57725dd0db7ff12085.zip |
Fixed nameclash.
svn-id: r31379
Diffstat (limited to 'engines/kyra')
-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()); } |