diff options
author | alberth <alberth@openttd.org> | 2010-12-22 11:46:41 +0000 |
---|---|---|
committer | alberth <alberth@openttd.org> | 2010-12-22 11:46:41 +0000 |
commit | 7303f7d1990cff2ec9e99917ec021a9d977424df (patch) | |
tree | 580e5468eabf9c8af8a56aa1597c87bcae88e02a /src/script | |
parent | 67cd2cd6becf9aa5c38235b20ebd212d37cc3dfb (diff) | |
download | openttd-7303f7d1990cff2ec9e99917ec021a9d977424df.tar.xz |
(svn r21595) -Codechange: Some header files had their name changed, update the ifndef/define/endif lines.
Diffstat (limited to 'src/script')
-rw-r--r-- | src/script/script_info.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/script/script_info.hpp b/src/script/script_info.hpp index f25158049..69af93768 100644 --- a/src/script/script_info.hpp +++ b/src/script/script_info.hpp @@ -9,8 +9,8 @@ /** @file script_info.hpp ScriptInfo keeps track of all information of a script, like Author, Description, ... */ -#ifndef SCRIPT_INFO -#define SCRIPT_INFO +#ifndef SCRIPT_INFO_HPP +#define SCRIPT_INFO_HPP #include <squirrel.h> #include "../misc/countedptr.hpp" @@ -101,4 +101,4 @@ private: const char *url; }; -#endif /* SCRIPT_INFO */ +#endif /* SCRIPT_INFO_HPP */ |