From a80f53d3b6215bbb8b227e5f1fa971927249831a Mon Sep 17 00:00:00 2001 From: Priyanshu Kumar Rai <58476539+prirai@users.noreply.github.com> Date: Sat, 16 Dec 2023 16:36:35 +0530 Subject: [PATCH] Update mw-value.h While compiling the SM64 using sm64pcBuilder2 I kept getting an error here. Using the error suggestion I made a modification to the header file by adding an import and things worked smoothly. It's my first time using Moon64 or playing SM64. --- src/moon/ui/widgets/mw-value.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/moon/ui/widgets/mw-value.h b/src/moon/ui/widgets/mw-value.h index 5adb5d66..4145a349 100644 --- a/src/moon/ui/widgets/mw-value.h +++ b/src/moon/ui/widgets/mw-value.h @@ -4,6 +4,7 @@ #include "moon/ui/interfaces/moon-widget.h" #include #include +#include struct MWValueBind{ bool *bvar; @@ -42,4 +43,4 @@ class MWValue : public MoonWidget { void Dispose(); }; -#endif \ No newline at end of file +#endif