aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/dialog.h
diff options
context:
space:
mode:
authorBendegúz Nagy2016-09-03 10:47:16 +0200
committerBendegúz Nagy2016-09-03 10:47:16 +0200
commitcb8fca46c5495d8f27c96ab4aa5b23c16910df0e (patch)
treee5e2f84371607323e1d2aaf9757ba417de1ce28a /engines/dm/dialog.h
parentcd3b485952b71244392f594164e60b96a07fb23c (diff)
downloadscummvm-rg350-cb8fca46c5495d8f27c96ab4aa5b23c16910df0e.tar.gz
scummvm-rg350-cb8fca46c5495d8f27c96ab4aa5b23c16910df0e.tar.bz2
scummvm-rg350-cb8fca46c5495d8f27c96ab4aa5b23c16910df0e.zip
DM: Fix include headers
Add DM_ prefix Add missing include guards
Diffstat (limited to 'engines/dm/dialog.h')
-rw-r--r--engines/dm/dialog.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/dm/dialog.h b/engines/dm/dialog.h
index bf6618a264..c736f35b63 100644
--- a/engines/dm/dialog.h
+++ b/engines/dm/dialog.h
@@ -25,6 +25,9 @@
* maintainer of the Dungeon Master Encyclopaedia (http://dmweb.free.fr/)
*/
+#ifndef DM_DIALOG_H
+#define DM_DIALOG_H
+
#include "dm/dm.h"
namespace DM {
@@ -54,3 +57,5 @@ public:
};
}
+
+#endif