aboutsummaryrefslogtreecommitdiff
path: root/engines/draci
diff options
context:
space:
mode:
authorEugene Sandulenko2016-05-17 18:20:01 +0200
committerEugene Sandulenko2016-05-17 18:21:30 +0200
commit33abb6118f9551c6a4afc05ad35de6f630ccb152 (patch)
treeaf8609f238aa4b0a38767a8767da3dc5f20e7cd0 /engines/draci
parent3aafeee19c6ebe9c5bd1f1840dd6fc809ed6a87d (diff)
downloadscummvm-rg350-33abb6118f9551c6a4afc05ad35de6f630ccb152.tar.gz
scummvm-rg350-33abb6118f9551c6a4afc05ad35de6f630ccb152.tar.bz2
scummvm-rg350-33abb6118f9551c6a4afc05ad35de6f630ccb152.zip
ALL: Change main engine header guard defines to <directory>_<engine>_H
Recently we started to use this as new semantics, although in the past we used simly <engine>_H. Now these guard defines are consistent with rest of the files which are used in the engines.
Diffstat (limited to 'engines/draci')
-rw-r--r--engines/draci/draci.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/draci/draci.h b/engines/draci/draci.h
index 540c288d3d..90afdbcf60 100644
--- a/engines/draci/draci.h
+++ b/engines/draci/draci.h
@@ -20,8 +20,8 @@
*
*/
-#ifndef DRACI_H
-#define DRACI_H
+#ifndef DRACI_DRACI_H
+#define DRACI_DRACI_H
#include "engines/engine.h"
#include "common/random.h"
@@ -126,4 +126,4 @@ static inline long scummvm_lround(double val) { return (long)floor(val + 0.5); }
} // End of namespace Draci
-#endif // DRACI_H
+#endif // DRACI_DRACI_H