diff options
author | Strangerke | 2013-10-04 18:00:56 +0200 |
---|---|---|
committer | Strangerke | 2013-10-04 18:00:56 +0200 |
commit | 221faca2868f4c1dae3e23e4ca608968c8042620 (patch) | |
tree | b21b009fc40a88580a58eb63cb541b563f638c68 | |
parent | 1cbe175a74099a4ca54503933b12c84352a98e82 (diff) | |
download | scummvm-rg350-221faca2868f4c1dae3e23e4ca608968c8042620.tar.gz scummvm-rg350-221faca2868f4c1dae3e23e4ca608968c8042620.tar.bz2 scummvm-rg350-221faca2868f4c1dae3e23e4ca608968c8042620.zip |
AVALANCHE: Fix ifndef check in header files
-rw-r--r-- | engines/avalanche/background.h | 6 | ||||
-rw-r--r-- | engines/avalanche/closing.h | 6 | ||||
-rw-r--r-- | engines/avalanche/menu.h | 6 | ||||
-rw-r--r-- | engines/avalanche/pingo.h | 6 |
4 files changed, 12 insertions, 12 deletions
diff --git a/engines/avalanche/background.h b/engines/avalanche/background.h index f4fcd38b9b..be09cc4dd3 100644 --- a/engines/avalanche/background.h +++ b/engines/avalanche/background.h @@ -27,8 +27,8 @@ /* Original name: CELER The unit for updating the screen pics. */ -#ifndef AVALANCHE_CELER2_H -#define AVALANCHE_CELER2_H +#ifndef AVALANCHE_BACKGROUND_H +#define AVALANCHE_BACKGROUND_H #include "common/scummsys.h" #include "common/file.h" @@ -80,4 +80,4 @@ private: } // End of namespace Avalanche. -#endif // AVALANCHE_CELER2_H +#endif // AVALANCHE_BACKGROUND_H diff --git a/engines/avalanche/closing.h b/engines/avalanche/closing.h index b4c80a8e89..cfda3cc11c 100644 --- a/engines/avalanche/closing.h +++ b/engines/avalanche/closing.h @@ -27,8 +27,8 @@ /* CLOSING The closing screen and error handler. */ -#ifndef AVALANCHE_CLOSING2_H -#define AVALANCHE_CLOSING2_H +#ifndef AVALANCHE_CLOSING_H +#define AVALANCHE_CLOSING_H #include "common/scummsys.h" #include "common/str.h" @@ -60,4 +60,4 @@ private: } // End of namespace Avalanche. -#endif // AVALANCHE_CLOSING2_H +#endif // AVALANCHE_CLOSING_H diff --git a/engines/avalanche/menu.h b/engines/avalanche/menu.h index ab0456ed43..f856747353 100644 --- a/engines/avalanche/menu.h +++ b/engines/avalanche/menu.h @@ -27,8 +27,8 @@ /* Original name: DROPDOWN A customized version of Oopmenu (qv). */ -#ifndef AVALANCHE_DROPDOWN2_H -#define AVALANCHE_DROPDOWN2_H +#ifndef AVALANCHE_MENU_H +#define AVALANCHE_MENU_H #include "common/scummsys.h" #include "common/str.h" @@ -179,4 +179,4 @@ private: } // End of namespace Avalanche. -#endif // AVALANCHE_DROPDOWN2_H +#endif // AVALANCHE_MENU_H diff --git a/engines/avalanche/pingo.h b/engines/avalanche/pingo.h index ee4fb587e7..296d9dea05 100644 --- a/engines/avalanche/pingo.h +++ b/engines/avalanche/pingo.h @@ -27,8 +27,8 @@ /* PINGO Full-screen sub-parts of the game. */ -#ifndef AVALANCHE_PINGO2_H -#define AVALANCHE_PINGO2_H +#ifndef AVALANCHE_PINGO_H +#define AVALANCHE_PINGO_H #include "common/scummsys.h" #include "common/str.h" @@ -57,4 +57,4 @@ private: } // End of namespace Avalanche. -#endif // AVALANCHE_PINGO2_H +#endif // AVALANCHE_PINGO_H |