aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/hugo/hugo.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2019-05-11 13:04:00 +1000
committerPaul Gilbert2019-05-11 13:04:00 +1000
commit84c47349a9f06057640ddc35c015fdd97b30d839 (patch)
tree1e1b38464f1cafaa3c022e71bc80512f0324514a /engines/glk/hugo/hugo.cpp
parentc1f8bd88232c026af207923a4f53bbfca439de13 (diff)
downloadscummvm-rg350-84c47349a9f06057640ddc35c015fdd97b30d839.tar.gz
scummvm-rg350-84c47349a9f06057640ddc35c015fdd97b30d839.tar.bz2
scummvm-rg350-84c47349a9f06057640ddc35c015fdd97b30d839.zip
GLK: HUGO: Compilation fixes
Diffstat (limited to 'engines/glk/hugo/hugo.cpp')
-rw-r--r--engines/glk/hugo/hugo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/hugo/hugo.cpp b/engines/glk/hugo/hugo.cpp
index 0fca43222a..dccf978882 100644
--- a/engines/glk/hugo/hugo.cpp
+++ b/engines/glk/hugo/hugo.cpp
@@ -86,7 +86,7 @@ Hugo::Hugo(OSystem *syst, const GlkGameDescription &gameDesc) : GlkAPI(syst, gam
Common::fill(&buffer[0], &buffer[MAXBUFFER + MAXWORDS], '\0');
Common::fill(&errbuf[0], &errbuf[MAXBUFFER + 1], 0);
Common::fill(&line[0], &line[1025], 0);
- Common::fill(&word[0], &word[MAXWORDS + 1], nullptr);
+ Common::fill(&word[0], &word[MAXWORDS + 1], (const char *)nullptr);
Common::fill(&wd[0], &wd[MAXWORDS + 1], 0);
Common::fill(&parseerr[0], &parseerr[MAXBUFFER + 1], '\0');
Common::fill(&parsestr[0], &parsestr[MAXBUFFER + 1], '\0');