From 2d2a6746f185549769709071bcb3fdba0353c4a0 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 6 Oct 2019 19:44:10 -0700 Subject: GLK: JACL: Fix game script execution --- engines/glk/jacl/interpreter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines') diff --git a/engines/glk/jacl/interpreter.cpp b/engines/glk/jacl/interpreter.cpp index 0488d0a381..5fd38279d4 100644 --- a/engines/glk/jacl/interpreter.cpp +++ b/engines/glk/jacl/interpreter.cpp @@ -423,7 +423,7 @@ int execute(const char *funcname) { #ifdef GLK g_vm->glk_stream_set_position(game_stream, executing_function->position, seekmode_Start); before_command = executing_function->position; - //result = glk_get_bin_line_stream(game_stream, text_buffer, (glui32) 1024); + (void)glk_get_bin_line_stream(game_stream, text_buffer, (glui32) 1024); #else fseek(file, executing_function->position, SEEK_SET); before_command = executing_function->position; -- cgit v1.2.3