aboutsummaryrefslogtreecommitdiff
path: root/queen
diff options
context:
space:
mode:
authorPaweł Kołodziejski2004-08-14 09:10:14 +0000
committerPaweł Kołodziejski2004-08-14 09:10:14 +0000
commitd62ff5dca7b9bb7009d4edc91c2e3f31863ecb7d (patch)
treecf6e3788676edd2e59d926442f0f0f18166b0d8e /queen
parent80bcaf8d0943ffcaa8f669fd773374877f7e1428 (diff)
downloadscummvm-rg350-d62ff5dca7b9bb7009d4edc91c2e3f31863ecb7d.tar.gz
scummvm-rg350-d62ff5dca7b9bb7009d4edc91c2e3f31863ecb7d.tar.bz2
scummvm-rg350-d62ff5dca7b9bb7009d4edc91c2e3f31863ecb7d.zip
fixed warnings
svn-id: r14603
Diffstat (limited to 'queen')
-rw-r--r--queen/talk.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/queen/talk.cpp b/queen/talk.cpp
index 4942ee66c0..1c4a2296ab 100644
--- a/queen/talk.cpp
+++ b/queen/talk.cpp
@@ -1169,7 +1169,7 @@ int Talk::splitOptionHebrew(const char *str, char optionText[5][MAX_STRING_SIZE]
uint16 width = 0;
uint16 optionLines = 0;
uint16 maxTextLen = MAX_TEXT_WIDTH;
- char *p = strchr(str, '\0');
+ char *p = (char *)strchr(str, '\0');
while (p != str - 1) {
while (*p != ' ' && p != str - 1) {
--p;