Skip to content

Commit

Permalink
DIRECTOR: Fix guard includes
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Aug 3, 2016
1 parent 61f15f1 commit f471b48
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
13 changes: 3 additions & 10 deletions engines/director/dib.h
Expand Up @@ -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;
}
Expand Down
5 changes: 5 additions & 0 deletions engines/director/score.h
Expand Up @@ -20,6 +20,9 @@
*
*/

#ifndef DIRECTOR_SCORE_H
#define DIRECTOR_SCORE_H

#include "common/rect.h"
#include "common/stream.h"
#include "common/array.h"
Expand Down Expand Up @@ -235,3 +238,5 @@ class Score {
};

} //End of namespace Director

#endif

0 comments on commit f471b48

Please sign in to comment.