diff options
-rw-r--r-- | engines/glk/adrift/os_glk.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/glk/adrift/os_glk.cpp b/engines/glk/adrift/os_glk.cpp index d973f7c4e3..41409cb2eb 100644 --- a/engines/glk/adrift/os_glk.cpp +++ b/engines/glk/adrift/os_glk.cpp @@ -27,6 +27,7 @@ #include "glk/streams.h" #include "glk/windows.h" #include "common/textconsole.h" +#include "common/translation.h" namespace Glk { namespace Adrift { @@ -3071,7 +3072,7 @@ gsc_startup_code(Common::SeekableReadStream *game_stream, strid_t restore_stream * Display a brief loading game message; here we have to use a timeout * to ensure that the text is flushed to Glk. */ - g_vm->glk_put_string("Loading game...\n"); + g_vm->glk_put_string(_("Loading game...\n")); if (g_vm->glk_gestalt(gestalt_Timer, 0)) { event_t event; |