From 58611d0ecb8675be6d2ee9db5d95ea4381e42fee Mon Sep 17 00:00:00 2001 From: teejusb <5017202+teejusb@users.noreply.github.com> Date: Sun, 29 Aug 2021 10:44:31 -0700 Subject: [PATCH] Move global.h to the top. It otherwise fails compilation when using gcc One day I'll fix up the headers and run IWYU on the repo --- src/NoteDisplay.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/NoteDisplay.cpp b/src/NoteDisplay.cpp index 0c0197f201..034d545a7b 100644 --- a/src/NoteDisplay.cpp +++ b/src/NoteDisplay.cpp @@ -1,6 +1,7 @@ +#include "global.h" + #include "NoteDisplay.h" -#include "global.h" #include "ActorUtil.h" #include "ArrowEffects.h" #include "GameState.h"