mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-26 12:48:16 +00:00
Fix another regression that didn't append data in safeStrcat.
svn-id: r45296
This commit is contained in:
parent
6114381b4c
commit
91dcca89b1
@ -516,7 +516,7 @@ void AgiEngine::printStatus(const char *message, ...) {
|
||||
printText(x, 0, 0, _game.lineStatus, 40, STATUS_FG, STATUS_BG);
|
||||
}
|
||||
|
||||
static void safeStrcat(Common::String p, const char *t) {
|
||||
static void safeStrcat(Common::String &p, const char *t) {
|
||||
if (t != NULL)
|
||||
p += t;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user