diff options
author | Paul Gilbert | 2018-10-29 00:43:02 -0700 |
---|---|---|
committer | Paul Gilbert | 2018-12-08 19:05:59 -0800 |
commit | 48a00e7c0019ea2cc0681342baa828d9cfb6c00d (patch) | |
tree | d35db8b38dd800415eb8295aa4c7ded282a75496 /engines | |
parent | 4fcffce50568bb3c202720bbb90bd92cfefbc83f (diff) | |
download | scummvm-rg350-48a00e7c0019ea2cc0681342baa828d9cfb6c00d.tar.gz scummvm-rg350-48a00e7c0019ea2cc0681342baa828d9cfb6c00d.tar.bz2 scummvm-rg350-48a00e7c0019ea2cc0681342baa828d9cfb6c00d.zip |
GLK: Set Windows fields from int to bool
Diffstat (limited to 'engines')
-rw-r--r-- | engines/gargoyle/windows.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/engines/gargoyle/windows.h b/engines/gargoyle/windows.h index 231ed67de6..93d7ac24f6 100644 --- a/engines/gargoyle/windows.h +++ b/engines/gargoyle/windows.h @@ -288,15 +288,15 @@ public: Stream *_stream; ///< the window stream. Stream *_echoStream; ///< the window's echo stream, if any. - int _lineRequest; - int _lineRequestUni; - int _charRequest; - int _charRequestUni; - int _mouseRequest; - int _hyperRequest; - int _moreRequest; - int _scrollRequest; - int _imageLoaded; + bool _lineRequest; + bool _lineRequestUni; + bool _charRequest; + bool _charRequestUni; + bool _mouseRequest; + bool _hyperRequest; + bool _moreRequest; + bool _scrollRequest; + bool _imageLoaded; glui32 _echoLineInputBase; glui32 *_lineTerminatorsBase; |