aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/text.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/dm/text.h')
-rw-r--r--engines/dm/text.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/dm/text.h b/engines/dm/text.h
index c71f196658..adfc42635b 100644
--- a/engines/dm/text.h
+++ b/engines/dm/text.h
@@ -37,11 +37,11 @@ class TextMan {
DMEngine *_vm;
public:
explicit TextMan(DMEngine *vm);
- void printTextToBitmap(byte *destBitmap, uint16 destPixelWidth, uint16 destX, uint16 destY,
+ void f40_printTextToBitmap(byte *destBitmap, uint16 destPixelWidth, uint16 destX, uint16 destY,
Color textColor, Color bgColor, const char *text, uint16 destHeight); // @ F0040_TEXT_Print
void f53_printToLogicalScreen(uint16 destX, uint16 destY, Color textColor, Color bgColor, const char *text); // @ F0053_TEXT_PrintToLogicalScreen
- void printToViewport(int16 posX, int16 posY, Color textColor, const char *text, Color bgColor = k12_ColorDarkestGray); // @ F0052_TEXT_PrintToViewport
- void printWithTrailingSpaces(byte *destBitmap, int16 destPixelWidth, int16 destX, int16 destY, Color textColor, Color bgColor,
+ void f52_printToViewport(int16 posX, int16 posY, Color textColor, const char *text, Color bgColor = k12_ColorDarkestGray); // @ F0052_TEXT_PrintToViewport
+ void f41_printWithTrailingSpaces(byte *destBitmap, int16 destPixelWidth, int16 destX, int16 destY, Color textColor, Color bgColor,
const char *text, int16 strLenght, int16 destHeight); // @ F0041_TEXT_PrintWithTrailingSpaces
};