aboutsummaryrefslogtreecommitdiff
path: root/queen/talk.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'queen/talk.cpp')
-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;