diff options
author | Eugene Sandulenko | 2016-05-17 18:20:01 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-05-17 18:21:30 +0200 |
commit | 33abb6118f9551c6a4afc05ad35de6f630ccb152 (patch) | |
tree | af8609f238aa4b0a38767a8767da3dc5f20e7cd0 /engines/cge2 | |
parent | 3aafeee19c6ebe9c5bd1f1840dd6fc809ed6a87d (diff) | |
download | scummvm-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/cge2')
-rw-r--r-- | engines/cge2/cge2.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/cge2/cge2.h b/engines/cge2/cge2.h index fbe4cb3abc..18f919b5eb 100644 --- a/engines/cge2/cge2.h +++ b/engines/cge2/cge2.h @@ -25,8 +25,8 @@ * Copyright (c) 1994-1997 Janus B. Wisniewski and L.K. Avalon */ -#ifndef CGE2_H -#define CGE2_H +#ifndef CGE2_CGE2_H +#define CGE2_CGE2_H #include "common/random.h" #include "common/savefile.h" @@ -335,4 +335,4 @@ public: } // End of namespace CGE2 -#endif // CGE2_H +#endif // CGE2_CGE2_H |