diff options
author | Filippos Karapetis | 2011-08-24 21:42:21 +0300 |
---|---|---|
committer | Filippos Karapetis | 2011-08-24 21:42:21 +0300 |
commit | 64db457b7f19d3f80affe5557d7817219bae4185 (patch) | |
tree | 232d1b66f1dc6d233087eab660dea13d21222100 | |
parent | 5ba98f2d7b4248417ad318098efa0ce76c792fdd (diff) | |
download | scummvm-rg350-64db457b7f19d3f80affe5557d7817219bae4185.tar.gz scummvm-rg350-64db457b7f19d3f80affe5557d7817219bae4185.tar.bz2 scummvm-rg350-64db457b7f19d3f80affe5557d7817219bae4185.zip |
DREAMWEB: Use the correct error() call
-rw-r--r-- | engines/dreamweb/stubs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dreamweb/stubs.cpp b/engines/dreamweb/stubs.cpp index 10ecd3a9bc..1f10f489b8 100644 --- a/engines/dreamweb/stubs.cpp +++ b/engines/dreamweb/stubs.cpp @@ -696,7 +696,7 @@ void DreamGenContext::getroomdata(uint8 roomIndex) { // It isn't called anywhere right now, so just throw an error if it's // ever called. //getroomdata(roomIndex); - error("getroomdata() with roomIndex param called"); + ::error("getroomdata() with roomIndex param called"); } void DreamGenContext::startloading() { |