aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/glk_api.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2019-04-14 18:43:30 -0700
committerPaul Gilbert2019-04-17 20:46:06 -0700
commit8e11a14939365c3a2994602b5db11a4fe6e8eaac (patch)
treea0bc1be59cf578317f3a0bd0d809d1b194388a2f /engines/glk/glk_api.cpp
parente271cdc6534763f4472c3ff70c22292268300814 (diff)
downloadscummvm-rg350-8e11a14939365c3a2994602b5db11a4fe6e8eaac.tar.gz
scummvm-rg350-8e11a14939365c3a2994602b5db11a4fe6e8eaac.tar.bz2
scummvm-rg350-8e11a14939365c3a2994602b5db11a4fe6e8eaac.zip
GLK: GLULXE: Set up method definitions, glkop methods
Diffstat (limited to 'engines/glk/glk_api.cpp')
-rw-r--r--engines/glk/glk_api.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/glk/glk_api.cpp b/engines/glk/glk_api.cpp
index 61c7a55aea..e2f3117ef7 100644
--- a/engines/glk/glk_api.cpp
+++ b/engines/glk/glk_api.cpp
@@ -36,7 +36,8 @@
namespace Glk {
GlkAPI::GlkAPI(OSystem *syst, const GlkGameDescription &gameDesc) :
- GlkEngine(syst, gameDesc), _gliFirstEvent(false) {
+ GlkEngine(syst, gameDesc), _gliFirstEvent(false), gli_register_obj(nullptr),
+ gli_unregister_obj(nullptr), gli_register_arr(nullptr), gli_unregister_arr(nullptr) {
// Set uppercase/lowercase tables
int ix, res;
for (ix = 0; ix < 256; ix++) {