aboutsummaryrefslogtreecommitdiff
path: root/saga/sprite.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2004-08-03 00:40:16 +0000
committerEugene Sandulenko2004-08-03 00:40:16 +0000
commit415400f24e4041298ebd2b084f8fa4a32ea4e7c7 (patch)
treee6d08ba20f959c57dcd2276828f77be0684a4ac9 /saga/sprite.cpp
parentfe1ab79beeec83d156572c12a8f3e1cb874d7d7d (diff)
downloadscummvm-rg350-415400f24e4041298ebd2b084f8fa4a32ea4e7c7.tar.gz
scummvm-rg350-415400f24e4041298ebd2b084f8fa4a32ea4e7c7.tar.bz2
scummvm-rg350-415400f24e4041298ebd2b084f8fa4a32ea4e7c7.zip
Move TEXT_* to SagaEngine class.
svn-id: r14450
Diffstat (limited to 'saga/sprite.cpp')
-rw-r--r--saga/sprite.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/saga/sprite.cpp b/saga/sprite.cpp
index a003625238..696949f64d 100644
--- a/saga/sprite.cpp
+++ b/saga/sprite.cpp
@@ -29,7 +29,7 @@
#include "saga/scene_mod.h"
#include "saga/rscfile_mod.h"
-#include "saga/text_mod.h"
+#include "saga/text.h"
#include "saga/font.h"
#include "saga/sprite_mod.h"
@@ -398,7 +398,7 @@ int SPRITE_DrawOccluded(R_SURFACE *ds, R_SPRITELIST *sprite_list, int sprite_num
char buf[1024] = { 0 };
sprintf( buf, "dw: %d, dh: %d.", ci.draw_w, ci.draw_h );
- TEXT_Draw(2, ds, buf, spr_x - x_align, spr_y - y_align, 255, 0, FONT_OUTLINE);
+ _vm->textDraw(2, ds, buf, spr_x - x_align, spr_y - y_align, 255, 0, FONT_OUTLINE);
}
*/
return R_SUCCESS;