aboutsummaryrefslogtreecommitdiff
path: root/src/gui/cheatMenu.cpp
diff options
context:
space:
mode:
authorrealOneplustwo <oneplustwoisyes@gmail.com>2020-10-21 19:33:31 -0700
committerrealOneplustwo <oneplustwoisyes@gmail.com>2020-10-21 19:33:31 -0700
commit62cf9b46600ff1f1f2733401f0a670d703fee136 (patch)
treea9b14f1a5aa210aedf2549ef473c03197f9f5347 /src/gui/cheatMenu.cpp
parent3bdb843f2c11dffd9db6f899c0ba77f52deac290 (diff)
downloaddragonfireclient-62cf9b46600ff1f1f2733401f0a670d703fee136.tar.xz
Fix compile error
Diffstat (limited to 'src/gui/cheatMenu.cpp')
-rw-r--r--src/gui/cheatMenu.cpp4
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")