diff --git a/include/Runtime.PPCEABI.H/__va_arg.h b/include/Runtime.PPCEABI.H/__va_arg.h index ef70f02101f..2091ed6fb84 100644 --- a/include/Runtime.PPCEABI.H/__va_arg.h +++ b/include/Runtime.PPCEABI.H/__va_arg.h @@ -3,7 +3,7 @@ #include "dolphin/types.h" -// not sure what the members are. +// not sure what the members are. // OK when the struct is 12 bytes. typedef struct __va_list_struct { u8 data[12]; diff --git a/libs/JSystem/JUtility/JUTDirectPrint.cpp b/libs/JSystem/JUtility/JUTDirectPrint.cpp index 0bcda0b8921..b63162278db 100644 --- a/libs/JSystem/JUtility/JUTDirectPrint.cpp +++ b/libs/JSystem/JUtility/JUTDirectPrint.cpp @@ -37,7 +37,7 @@ JUTDirectPrint* JUTDirectPrint::sDirectPrint; JUTDirectPrint::JUTDirectPrint() { changeFrameBuffer(NULL, 0, 0); setCharColor(0xff, 0xff, 0xff); -} +} /* 802E4240-802E4288 2DEB80 0048+00 0/0 1/1 0/0 .text start__14JUTDirectPrintFv */ JUTDirectPrint* JUTDirectPrint::start() { @@ -358,4 +358,3 @@ void JUTDirectPrint::setCharColor(u8 r, u8 g, u8 b) { mCharColor_Cr2 = (Cr >> 1) & 0x7fff; mCharColor_Cr4 = (Cr >> 2) & 0x3fff; } - diff --git a/libs/MSL_C.PPCEABI.bare.H/MSL_Common/Src/printf.cpp b/libs/MSL_C.PPCEABI.bare.H/MSL_Common/Src/printf.cpp index 1b06f8c5ef3..8c072de963c 100644 --- a/libs/MSL_C.PPCEABI.bare.H/MSL_Common/Src/printf.cpp +++ b/libs/MSL_C.PPCEABI.bare.H/MSL_Common/Src/printf.cpp @@ -15,7 +15,8 @@ struct __va_list_struct; extern "C" void sprintf(); extern "C" void snprintf(); -extern "C" size_t vsnprintf(char* buffer, size_t buffer_size, const char* format, __va_list_struct* args); +extern "C" size_t vsnprintf(char* buffer, size_t buffer_size, const char* format, + __va_list_struct* args); extern "C" void vprintf(); extern "C" void fprintf(); extern "C" void printf();