From 2eb7479d91ae82a5e8fcc4c6e00d282b467e4ae1 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Fri, 2 Aug 2019 19:45:14 -0700 Subject: GLK: Fix VS uninitialized field warnings --- engines/glk/glk.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/glk/glk.cpp') diff --git a/engines/glk/glk.cpp b/engines/glk/glk.cpp index 892094a0b7..cffdd8b9b5 100644 --- a/engines/glk/glk.cpp +++ b/engines/glk/glk.cpp @@ -48,8 +48,8 @@ GlkEngine *g_vm; GlkEngine::GlkEngine(OSystem *syst, const GlkGameDescription &gameDesc) : _gameDescription(gameDesc), Engine(syst), _random("Glk"), _blorb(nullptr), _clipboard(nullptr), _conf(nullptr), _debugger(nullptr), _events(nullptr), _pictures(nullptr), - _screen(nullptr), _selection(nullptr), _sounds(nullptr), _windows(nullptr), - _copySelect(false), _terminated(false), _pcSpeaker(nullptr), + _screen(nullptr), _selection(nullptr), _sounds(nullptr), _streams(nullptr), _windows(nullptr), + _copySelect(false), _terminated(false), _pcSpeaker(nullptr), _loadSaveSlot(-1), gli_register_obj(nullptr), gli_unregister_obj(nullptr), gli_register_arr(nullptr), gli_unregister_arr(nullptr) { // Set up debug channels -- cgit v1.2.3