diff options
author | Strangerke | 2016-06-22 23:21:18 +0200 |
---|---|---|
committer | Bendegúz Nagy | 2016-08-26 23:02:22 +0200 |
commit | 0ad91dfe6723e04271cbb44e7ccbce3071e1af6a (patch) | |
tree | 7cef278c8b1d42c44cab7cacaf51fad1c4836187 /engines | |
parent | a72bfe712da048fce3f32375826cd5724c6f9508 (diff) | |
download | scummvm-rg350-0ad91dfe6723e04271cbb44e7ccbce3071e1af6a.tar.gz scummvm-rg350-0ad91dfe6723e04271cbb44e7ccbce3071e1af6a.tar.bz2 scummvm-rg350-0ad91dfe6723e04271cbb44e7ccbce3071e1af6a.zip |
DM: Add missing explicit keyword
Diffstat (limited to 'engines')
-rw-r--r-- | engines/dm/text.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dm/text.h b/engines/dm/text.h index baf9b72851..d273de3041 100644 --- a/engines/dm/text.h +++ b/engines/dm/text.h @@ -9,7 +9,7 @@ namespace DM { class TextMan { DMEngine *_vm; public: - TextMan(DMEngine *vm); + explicit TextMan(DMEngine *vm); void printTextToBitmap(byte *destBitmap, uint16 destPixelWidth, uint16 destX, uint16 destY, Color textColor, Color bgColor, const char *text, uint16 destHeight, Viewport &viewport = gDefultViewPort); // @ F0040_TEXT_Print void printTextToScreen(uint16 destX, uint16 destY, Color textColor, Color bgColor, const char *text, Viewport &viewport = gDefultViewPort); // @ F0053_TEXT_PrintToLogicalScreen |