aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/gfx.h
diff options
context:
space:
mode:
authorEugene Sandulenko2019-07-02 23:24:35 +0200
committerEugene Sandulenko2019-09-03 17:17:08 +0200
commit41c1353edc7800af5bec95c082e594429b28301e (patch)
tree29494137975dc956f0a901c6cda94514ba09b1b0 /engines/hdb/gfx.h
parent6ffe0217097b07198952c7751b00f72aa83453d4 (diff)
downloadscummvm-rg350-41c1353edc7800af5bec95c082e594429b28301e.tar.gz
scummvm-rg350-41c1353edc7800af5bec95c082e594429b28301e.tar.bz2
scummvm-rg350-41c1353edc7800af5bec95c082e594429b28301e.zip
HDB: More portable struct initializers
Diffstat (limited to 'engines/hdb/gfx.h')
-rw-r--r--engines/hdb/gfx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hdb/gfx.h b/engines/hdb/gfx.h
index 964af02841..d369edc040 100644
--- a/engines/hdb/gfx.h
+++ b/engines/hdb/gfx.h
@@ -66,7 +66,7 @@ struct GfxCache {
uint32 size;
int16 loaded;
- GfxCache() : name(""), tileGfx(NULL), size(0), loaded(0) {}
+ GfxCache() : tileGfx(NULL), size(0), loaded(0) { name[0] = 0; }
};
struct FontInfo {