diff options
author | yinsimei | 2017-07-10 22:10:26 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2017-07-13 18:27:45 +0200 |
commit | 389bd92ab9aedae14d6ce18a88153212ecb705b2 (patch) | |
tree | 8de3b6f9fb1fbcbd96f8379572d8104089b56ded /engines/sludge | |
parent | 2563180f11589213a816a2a6c3482ce308df922b (diff) | |
download | scummvm-rg350-389bd92ab9aedae14d6ce18a88153212ecb705b2.tar.gz scummvm-rg350-389bd92ab9aedae14d6ce18a88153212ecb705b2.tar.bz2 scummvm-rg350-389bd92ab9aedae14d6ce18a88153212ecb705b2.zip |
SLUDGE: correct #define in header to match file name
Diffstat (limited to 'engines/sludge')
-rw-r--r-- | engines/sludge/language.h | 4 | ||||
-rw-r--r-- | engines/sludge/sludge.h | 4 | ||||
-rw-r--r-- | engines/sludge/sprites.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/engines/sludge/language.h b/engines/sludge/language.h index c38ac7cbca..57bc97e2d4 100644 --- a/engines/sludge/language.h +++ b/engines/sludge/language.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ -#ifndef LANGUAGE_H -#define LANGUAGE_H +#ifndef SLUDGE_LANGUAGE_H +#define SLUDGE_LANGUAGE_H #include "common/file.h" diff --git a/engines/sludge/sludge.h b/engines/sludge/sludge.h index 5ec197f915..03297ffffd 100644 --- a/engines/sludge/sludge.h +++ b/engines/sludge/sludge.h @@ -20,8 +20,8 @@ * */ -#ifndef SLUDGE_H -#define SLUDGE_H +#ifndef SLUDGE_SLUDGE_H +#define SLUDGE_SLUDGE_H #include "common/random.h" #include "engines/engine.h" diff --git a/engines/sludge/sprites.h b/engines/sludge/sprites.h index fd1b347946..80a3493380 100644 --- a/engines/sludge/sprites.h +++ b/engines/sludge/sprites.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ -#ifndef SLUDGE_SPRITE_H -#define SLUDGE_SPRITE_H +#ifndef SLUDGE_SPRITES_H +#define SLUDGE_SPRITES_H #include "graphics/surface.h" #include "graphics/transparent_surface.h" |