aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/glk_api.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2018-11-29 21:37:31 -0800
committerPaul Gilbert2018-12-08 19:05:59 -0800
commit41b62ab00db1d1730b1d61b77fda0df2c65753c0 (patch)
tree4540fcc66b85971001943211b04bd6f6f62038a9 /engines/glk/glk_api.cpp
parent5ab65b0954ba69ed31edfdbd563a549f7da692af (diff)
downloadscummvm-rg350-41b62ab00db1d1730b1d61b77fda0df2c65753c0.tar.gz
scummvm-rg350-41b62ab00db1d1730b1d61b77fda0df2c65753c0.tar.bz2
scummvm-rg350-41b62ab00db1d1730b1d61b77fda0df2c65753c0.zip
GLK: TADS: Add a number of GLK interface methods
Diffstat (limited to 'engines/glk/glk_api.cpp')
-rw-r--r--engines/glk/glk_api.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/glk_api.cpp b/engines/glk/glk_api.cpp
index 19f8aef99f..32d6177f9a 100644
--- a/engines/glk/glk_api.cpp
+++ b/engines/glk/glk_api.cpp
@@ -394,7 +394,7 @@ void GlkAPI::glk_put_string_stream(strid_t str, const char *s) {
str->putBuffer(s, strlen(s));
}
-void GlkAPI::glk_put_buffer(char *buf, glui32 len) {
+void GlkAPI::glk_put_buffer(const char *buf, glui32 len) {
_streams->getCurrent()->putBuffer(buf, len);
}