aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/windows.h
diff options
context:
space:
mode:
authorPaul Gilbert2019-03-09 20:29:20 -0800
committerPaul Gilbert2019-03-09 20:35:58 -0800
commit537e9af4e03abe5e961f9933a493722a8971f75c (patch)
tree06e17917de8e2647c9b9ef9102717377b0df2416 /engines/glk/windows.h
parente45dd70654e6537b4873f1b6c7b7b1b924f21d84 (diff)
downloadscummvm-rg350-537e9af4e03abe5e961f9933a493722a8971f75c.tar.gz
scummvm-rg350-537e9af4e03abe5e961f9933a493722a8971f75c.tar.bz2
scummvm-rg350-537e9af4e03abe5e961f9933a493722a8971f75c.zip
GLK: Change Attributes fields from uint to bool
Diffstat (limited to 'engines/glk/windows.h')
-rw-r--r--engines/glk/windows.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/glk/windows.h b/engines/glk/windows.h
index bdd9674e43..9cab07acf9 100644
--- a/engines/glk/windows.h
+++ b/engines/glk/windows.h
@@ -316,11 +316,11 @@ struct WindowStyle {
* Window attributes
*/
struct Attributes {
- unsigned fgset : 1;
- unsigned bgset : 1;
- unsigned reverse : 1;
- unsigned : 1;
- unsigned style : 4;
+ bool fgset : 1;
+ bool bgset : 1;
+ bool reverse : 1;
+ unsigned : 1;
+ unsigned style : 4;
uint fgcolor;
uint bgcolor;
uint hyper;