diff options
author | Eugene Sandulenko | 2016-06-06 23:32:29 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-08-03 23:40:36 +0200 |
commit | f471b48cf44a63aaa7f035b1fd3dfe22cc9ebfa1 (patch) | |
tree | 191be1861b3f535df19a1c77389ffd124636b54c | |
parent | 61f15f16da5a88cc70522556d0a470371937eb76 (diff) | |
download | scummvm-rg350-f471b48cf44a63aaa7f035b1fd3dfe22cc9ebfa1.tar.gz scummvm-rg350-f471b48cf44a63aaa7f035b1fd3dfe22cc9ebfa1.tar.bz2 scummvm-rg350-f471b48cf44a63aaa7f035b1fd3dfe22cc9ebfa1.zip |
DIRECTOR: Fix guard includes
-rw-r--r-- | engines/director/dib.h | 13 | ||||
-rw-r--r-- | engines/director/score.h | 5 |
2 files changed, 8 insertions, 10 deletions
diff --git a/engines/director/dib.h b/engines/director/dib.h index e81b32be8e..e3763be2bf 100644 --- a/engines/director/dib.h +++ b/engines/director/dib.h @@ -20,21 +20,14 @@ * */ -/** - * @file - * Image decoder used in engines: - * - hugo - * - mohawk - * - wintermute - */ - -#ifndef IMAGE_BMP_H -#define IMAGE_BMP_H +#ifndef DIRECTOR_DIB_H +#define DIRECTOR_DIB_H #include "common/scummsys.h" #include "common/str.h" #include "image/image_decoder.h" #include "image/codecs/bmp_raw.h" + namespace Common { class SeekableReadStream; } diff --git a/engines/director/score.h b/engines/director/score.h index eea9bb955d..b0d53b23e3 100644 --- a/engines/director/score.h +++ b/engines/director/score.h @@ -20,6 +20,9 @@ * */ + #ifndef DIRECTOR_SCORE_H + #define DIRECTOR_SCORE_H + #include "common/rect.h" #include "common/stream.h" #include "common/array.h" @@ -235,3 +238,5 @@ private: }; } //End of namespace Director + +#endif |