[Scummvm-git-logs] scummvm master -> 70942301411a5f998bedde85f261a0b3113fc467

dreammaster paulfgilbert at gmail.com
Fri Sep 27 03:06:44 CEST 2019


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
7094230141 GLK: ADRIFT: Fix unsigned type mismatch


Commit: 70942301411a5f998bedde85f261a0b3113fc467
    https://github.com/scummvm/scummvm/commit/70942301411a5f998bedde85f261a0b3113fc467
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2019-09-26T18:06:32-07:00

Commit Message:
GLK: ADRIFT: Fix unsigned type mismatch

Changed paths:
    engines/glk/adrift/os_glk.cpp


diff --git a/engines/glk/adrift/os_glk.cpp b/engines/glk/adrift/os_glk.cpp
index dce48f8..d45a357 100644
--- a/engines/glk/adrift/os_glk.cpp
+++ b/engines/glk/adrift/os_glk.cpp
@@ -827,7 +827,7 @@ static sc_bool gsc_is_string_usable(const sc_char *string) {
  * Glk libraries.
  */
 static void gsc_status_update() {
-	glui32 width, height;
+	uint width, height;
 	uint index;
 	assert(gsc_status_window);
 





More information about the Scummvm-git-logs mailing list