# HG changeset patch # User Niels Martin Hansen # Date 2018-10-30 17:22:57 # Node ID 4b56ac2993a180cc46303078a0e54f18859992f0 # Parent 64521dfbcce504e7e313d2524c53c33c04d0509c Codechange: Wrong name for include guard diff --git a/src/framerate_type.h b/src/framerate_type.h --- a/src/framerate_type.h +++ b/src/framerate_type.h @@ -7,8 +7,13 @@ * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see . */ -#ifndef FRAMERATE_GUI_H -#define FRAMERATE_GUI_H +/** @file framerate_type.h + * Types for recording game performance data. + * @see framerate_gui.cpp for implementation + */ + +#ifndef FRAMERATE_TYPE_H +#define FRAMERATE_TYPE_H #include "stdafx.h" #include "core/enum_type.hpp" @@ -64,4 +69,4 @@ public: void ShowFramerateWindow(); -#endif /* FRAMERATE_GUI_H */ +#endif /* FRAMERATE_TYPE_H */