fix va_end missing

This commit is contained in:
diamant3
2023-09-27 22:17:54 +08:00
parent fc94f99fc6
commit c0c9f9c1a9

View File

@@ -420,6 +420,7 @@ void pspDebugScreenPrintf(const char *format, ...)
va_start(opt, format);
bufsz = vsnprintf( buff, (size_t) sizeof(buff), format, opt);
(void) pspDebugScreenPrintData(buff, bufsz);
va_end(opt);
}
#endif