aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/debugger.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mads/debugger.cpp')
-rw-r--r--engines/mads/debugger.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/mads/debugger.cpp b/engines/mads/debugger.cpp
index 3b77d5332b..99251f9fbb 100644
--- a/engines/mads/debugger.cpp
+++ b/engines/mads/debugger.cpp
@@ -362,7 +362,7 @@ bool Debugger::Cmd_PlayAnim(int argc, const char **argv) {
Common::File f;
if (f.exists(resName) || f.exists(resName + ".res")) {
- Nebular::AnimationView::execute(_vm, resName);
+ AnimationView::execute(_vm, resName);
return false;
} else {
debugPrintf("Could not find resource file\n");
@@ -382,7 +382,7 @@ bool Debugger::Cmd_PlayText(int argc, const char **argv) {
Common::File f;
if (f.exists(resName) || f.exists(resName + ".txr")) {
- Nebular::TextView::execute(_vm, resName);
+ TextView::execute(_vm, resName);
return false;
} else {
debugPrintf("Could not find resource file\n");