Skip to content

Commit

Permalink
WAGE: Fix compilation on some platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Feb 14, 2016
1 parent 402a9cf commit 540a2e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/wage/world.cpp
Expand Up @@ -496,7 +496,7 @@ const char *World::getAboutMenuItemName() {
sprintf(menu, "About %s...", _name.c_str());
} else { // Replace '@' with name
const char *str = _aboutMenuItemName.c_str();
char *pos = strchr(str, '@');
const char *pos = strchr(str, '@');
if (pos) {
strncat(menu, str, (pos - str));
strcat(menu, _name.c_str());
Expand Down

0 comments on commit 540a2e7

Please sign in to comment.