diff options
author | Strangerke | 2016-06-17 23:08:04 +0200 |
---|---|---|
committer | Bendegúz Nagy | 2016-08-26 23:02:22 +0200 |
commit | 59af06fd821911c44b44b5338db568b1ae2eff4d (patch) | |
tree | 837a83e5159a4891243538c08486411f2043b651 /engines/dm/dm.h | |
parent | 75db418e64e7e8753c5c8ab48f322e425c31f9b4 (diff) | |
download | scummvm-rg350-59af06fd821911c44b44b5338db568b1ae2eff4d.tar.gz scummvm-rg350-59af06fd821911c44b44b5338db568b1ae2eff4d.tar.bz2 scummvm-rg350-59af06fd821911c44b44b5338db568b1ae2eff4d.zip |
DM: Fix some CppCheck warnings
Diffstat (limited to 'engines/dm/dm.h')
-rw-r--r-- | engines/dm/dm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dm/dm.h b/engines/dm/dm.h index 384ac1dd5d..de37d3fceb 100644 --- a/engines/dm/dm.h +++ b/engines/dm/dm.h @@ -55,7 +55,7 @@ public: static const Thing thingNone; static const Thing thingEndOfList; - Thing() {} + Thing() : data(0) {} Thing(uint16 d) { set(d); } void set(uint16 d) { |