From 5e7b59f2fe2f0a7e39d2b7ba6f9e19f3bbdf3254 Mon Sep 17 00:00:00 2001 From: Jcw87 Date: Tue, 29 Apr 2025 09:49:09 -0700 Subject: Improve compiler compatibility (#743) * fix returns * use standard C headers * struct/class mismatch * explicit this in template * switch variable scope * C standard compliance * & l-value --- src/JSystem/J2DGraph/J2DTextBox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/JSystem/J2DGraph/J2DTextBox.cpp') diff --git a/src/JSystem/J2DGraph/J2DTextBox.cpp b/src/JSystem/J2DGraph/J2DTextBox.cpp index 8cd798a8..6897ff65 100644 --- a/src/JSystem/J2DGraph/J2DTextBox.cpp +++ b/src/JSystem/J2DGraph/J2DTextBox.cpp @@ -9,7 +9,7 @@ #include "JSystem/JUtility/JUTResource.h" #include "JSystem/J2DGraph/J2DPrint.h" #include "dolphin/gx/GXTransform.h" -#include "__va_arg.h" +#include "stdarg.h" /* 802D51D8-802D5268 .text __ct__10J2DTextBoxFPCcPCc */ J2DTextBox::J2DTextBox(const char* font, const char* str) : mpFont(NULL), mStringPtr(NULL) { -- cgit v1.2.3