diff options
| author | Jcw87 <Jcw87@users.noreply.github.com> | 2025-04-29 09:49:09 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-29 12:49:09 -0400 |
| commit | 5e7b59f2fe2f0a7e39d2b7ba6f9e19f3bbdf3254 (patch) | |
| tree | 07cf9ad7a5f7bf7423c0a520b8d64d024990136d /src/JSystem/J2DGraph/J2DTextBox.cpp | |
| parent | eef20535ac9416dcdc8164ecb2c9d4b7bb50f365 (diff) | |
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
Diffstat (limited to 'src/JSystem/J2DGraph/J2DTextBox.cpp')
| -rw-r--r-- | src/JSystem/J2DGraph/J2DTextBox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |
