diff options
author | Joseph-Eugene Winzer | 2018-11-16 15:20:22 +0100 |
---|---|---|
committer | Joseph-Eugene Winzer | 2019-02-06 09:42:11 +0100 |
commit | 1d00e625cf4c5248e073a71fc3e6e75780b1c0ca (patch) | |
tree | bfa3918ffacbb4520d54a2fb635d4893d607f78d | |
parent | 21c9c885baddf198552c1468878ce32ed3f872aa (diff) | |
download | scummvm-rg350-1d00e625cf4c5248e073a71fc3e6e75780b1c0ca.tar.gz scummvm-rg350-1d00e625cf4c5248e073a71fc3e6e75780b1c0ca.tar.bz2 scummvm-rg350-1d00e625cf4c5248e073a71fc3e6e75780b1c0ca.zip |
SUPERNOVA: Fixing header file includes
-rw-r--r-- | engines/supernova/msn_def.h | 2 | ||||
-rw-r--r-- | engines/supernova/rooms.h | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/engines/supernova/msn_def.h b/engines/supernova/msn_def.h index 6ce16b8283..cb473e77a0 100644 --- a/engines/supernova/msn_def.h +++ b/engines/supernova/msn_def.h @@ -23,6 +23,8 @@ #ifndef SUPERNOVA_MSN_DEF_H #define SUPERNOVA_MSN_DEF_H +#include "common/scummsys.h" + namespace Supernova { const int kTextSpeed[] = {19, 14, 10, 7, 4}; diff --git a/engines/supernova/rooms.h b/engines/supernova/rooms.h index e544997b88..801bfc4d80 100644 --- a/engines/supernova/rooms.h +++ b/engines/supernova/rooms.h @@ -23,9 +23,9 @@ #ifndef SUPERNOVA_ROOMS_H #define SUPERNOVA_ROOMS_H -#include "common/scummsys.h" +#include "common/str.h" -#include "msn_def.h" +#include "supernova/msn_def.h" namespace Common { class ReadStream; |