aboutsummaryrefslogtreecommitdiff
path: root/saga/animation.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2004-08-10 18:31:33 +0000
committerEugene Sandulenko2004-08-10 18:31:33 +0000
commit632042dae47246ba313b7375831349f197b03678 (patch)
tree0eba839f3a10e63cce32cfbfec8d7e395b9b7974 /saga/animation.cpp
parent0f1c83f1e76297302fb4ed58b90113a99ee0baec (diff)
downloadscummvm-rg350-632042dae47246ba313b7375831349f197b03678.tar.gz
scummvm-rg350-632042dae47246ba313b7375831349f197b03678.tar.bz2
scummvm-rg350-632042dae47246ba313b7375831349f197b03678.zip
Move CON_* to a class.
svn-id: r14538
Diffstat (limited to 'saga/animation.cpp')
-rw-r--r--saga/animation.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/saga/animation.cpp b/saga/animation.cpp
index dbae4dc4d9..d1a80aa8bd 100644
--- a/saga/animation.cpp
+++ b/saga/animation.cpp
@@ -26,7 +26,7 @@
#include "saga/gfx.h"
#include "saga/cvar_mod.h"
-#include "saga/console_mod.h"
+#include "saga/console.h"
#include "saga/game_mod.h"
#include "saga/events_mod.h"
#include "saga/render.h"
@@ -905,14 +905,14 @@ void Anim::animInfo(int argc, char *argv[]) {
anim_ct = _anim_count;
- CON_Print("There are %d animations loaded:", anim_ct);
+ _vm->_console->print("There are %d animations loaded:", anim_ct);
for (idx = 0, i = 0; i < anim_ct; idx++, i++) {
while (_anim_tbl[idx] == NULL) {
idx++;
}
- CON_Print("%02d: Frames: %u Flags: %u", i, _anim_tbl[idx]->n_frames, _anim_tbl[idx]->flags);
+ _vm->_console->print("%02d: Frames: %u Flags: %u", i, _anim_tbl[idx]->n_frames, _anim_tbl[idx]->flags);
}
}