diff options
author | realOneplustwo <oneplustwoisyes@gmail.com> | 2020-10-21 19:33:31 -0700 |
---|---|---|
committer | realOneplustwo <oneplustwoisyes@gmail.com> | 2020-10-21 19:33:31 -0700 |
commit | 62cf9b46600ff1f1f2733401f0a670d703fee136 (patch) | |
tree | a9b14f1a5aa210aedf2549ef473c03197f9f5347 /src/gui/cheatMenu.cpp | |
parent | 3bdb843f2c11dffd9db6f899c0ba77f52deac290 (diff) | |
download | dragonfireclient-62cf9b46600ff1f1f2733401f0a670d703fee136.tar.xz |
Fix compile error
Diffstat (limited to 'src/gui/cheatMenu.cpp')
-rw-r--r-- | src/gui/cheatMenu.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/cheatMenu.cpp b/src/gui/cheatMenu.cpp index 27a243357..b7ce7d634 100644 --- a/src/gui/cheatMenu.cpp +++ b/src/gui/cheatMenu.cpp @@ -14,13 +14,13 @@ with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "cheatMenu.h" #include "script/scripting_client.h" #include "client/client.h" #include "client/fontengine.h" +#include "cheatMenu.h" #include <cstddef> -FontMode fontStringToEnum(std::string str) { +FontMode CheatMenu::fontStringToEnum(std::string str) { if (str == "FM_Standard") return FM_Standard; else if (str == "FM_Mono") |