diff options
| author | Bendegúz Nagy | 2016-08-10 14:08:56 +0200 | 
|---|---|---|
| committer | Bendegúz Nagy | 2016-08-26 23:02:22 +0200 | 
| commit | 9e3e58a7227a162f461da8ef8a2ab80b95fbb11a (patch) | |
| tree | 7bc751c95324c47d11d9f3c2d0c2733a14f3d83f | |
| parent | c380ccf3f324f1266f894c29c38d9e188488e119 (diff) | |
| download | scummvm-rg350-9e3e58a7227a162f461da8ef8a2ab80b95fbb11a.tar.gz scummvm-rg350-9e3e58a7227a162f461da8ef8a2ab80b95fbb11a.tar.bz2 scummvm-rg350-9e3e58a7227a162f461da8ef8a2ab80b95fbb11a.zip  | |
DM: Add missing include guard to console.h
| -rw-r--r-- | engines/dm/console.h | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/dm/console.h b/engines/dm/console.h index 96fb677fd4..8ee4857d8d 100644 --- a/engines/dm/console.h +++ b/engines/dm/console.h @@ -27,7 +27,8 @@  #include "gui/debugger.h" - +#ifndef DM_CONSOLE_H +#define DM_CONSOLE_H  namespace DM { @@ -52,3 +53,5 @@ public:  };  } + +#endif  | 
