diff options
author | Paul Gilbert | 2019-09-29 16:37:26 -0700 |
---|---|---|
committer | Paul Gilbert | 2019-09-29 16:38:41 -0700 |
commit | 62f36d77c88ad8a5111eddfc9b0d072bee306ba8 (patch) | |
tree | 00e8dad1746773244cee18a1b3e8425d5374e490 /engines/glk/tads | |
parent | 1bca947874b01b847e8713de28472ce83d0fd15a (diff) | |
download | scummvm-rg350-62f36d77c88ad8a5111eddfc9b0d072bee306ba8.tar.gz scummvm-rg350-62f36d77c88ad8a5111eddfc9b0d072bee306ba8.tar.bz2 scummvm-rg350-62f36d77c88ad8a5111eddfc9b0d072bee306ba8.zip |
GLK: Changing ScummGlk engine name to Glk
Calling the engine a different name than it's namespace was just
causing confusion. Better to simply call it Glk, even if it will
be both the underlying API as well as the overall engine name
Diffstat (limited to 'engines/glk/tads')
-rw-r--r-- | engines/glk/tads/os_glk.cpp | 4 | ||||
-rw-r--r-- | engines/glk/tads/os_glk.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/glk/tads/os_glk.cpp b/engines/glk/tads/os_glk.cpp index 808eb108ee..c7cd0213a0 100644 --- a/engines/glk/tads/os_glk.cpp +++ b/engines/glk/tads/os_glk.cpp @@ -973,11 +973,11 @@ int os_get_str_rsc(int id, char *buf, size_t buflen) { } void os_dbg_printf(const char *fmt, ...) { - // No implementation, since ScummGlk doesn't yet implement a debugger + // No implementation, since we haven't set up a ScummVM debugger } void os_dbg_vprintf(const char *fmt, va_list args) { - // No implementation, since ScummGlk doesn't yet implement a debugger + // No implementation, since we haven't set up a ScummVM debugger } int os_vasprintf(char **bufptr, const char *fmt, va_list ap) { diff --git a/engines/glk/tads/os_glk.h b/engines/glk/tads/os_glk.h index ac5090f930..3f82313229 100644 --- a/engines/glk/tads/os_glk.h +++ b/engines/glk/tads/os_glk.h @@ -35,7 +35,7 @@ namespace Glk { namespace TADS { #define TADS_RUNTIME_VERSION "2.5.17" -#define OS_SYSTEM_NAME "ScummGlk" +#define OS_SYSTEM_NAME "ScummVM Glk" #define OSPATHCHAR '/' #define OSPATHALT "" |