aboutsummaryrefslogtreecommitdiff
path: root/saga/text.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'saga/text.cpp')
-rw-r--r--saga/text.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/saga/text.cpp b/saga/text.cpp
index 86e585ed7a..e3d6312ae1 100644
--- a/saga/text.cpp
+++ b/saga/text.cpp
@@ -32,7 +32,7 @@
namespace Saga {
-int SagaEngine::textDraw(int font_id, SURFACE *ds, const char *string, int text_x, int text_y, int color,
+int SagaEngine::textDraw(int font_id, Surface *ds, const char *string, int text_x, int text_y, int color,
int effect_color, int flags) {
int string_w;
int string_len;
@@ -172,7 +172,7 @@ void SagaEngine::textDestroyList(TEXTLIST *tlist) {
return;
}
-int SagaEngine::textDrawList(TEXTLIST *textlist, SURFACE *ds) {
+int SagaEngine::textDrawList(TEXTLIST *textlist, Surface *ds) {
TEXTLIST_ENTRY *entry_p;
assert((textlist != NULL) && (ds != NULL));