aboutsummaryrefslogtreecommitdiff
path: root/engines/griffon/config.h
diff options
context:
space:
mode:
authorStrangerke2019-08-27 23:29:55 +0200
committerEugene Sandulenko2019-11-13 22:07:08 +0100
commitc3eb075efef324e98f4d6e7588d5ae3499c01ed6 (patch)
tree7aab314e27a04fa1600d8bcd90d6a584faafff20 /engines/griffon/config.h
parent022b6316ddb06c94ea2fce2f3301cb8bd8f332bb (diff)
downloadscummvm-rg350-c3eb075efef324e98f4d6e7588d5ae3499c01ed6.tar.gz
scummvm-rg350-c3eb075efef324e98f4d6e7588d5ae3499c01ed6.tar.bz2
scummvm-rg350-c3eb075efef324e98f4d6e7588d5ae3499c01ed6.zip
GRIFFON: Change some integer by booleans
Diffstat (limited to 'engines/griffon/config.h')
-rw-r--r--engines/griffon/config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/griffon/config.h b/engines/griffon/config.h
index 78a7b1bd17..0b6ec89dfc 100644
--- a/engines/griffon/config.h
+++ b/engines/griffon/config.h
@@ -43,12 +43,12 @@ struct CONFIG {
int scr_width;
int scr_height;
int scr_bpp;
- int fullscreen;
+ bool fullscreen;
int hwaccel;
int hwsurface;
- int music;
+ bool music;
int musicvol;
- int effects;
+ bool effects;
int effectsvol;
};