Fix va_list bug in logger

This commit is contained in:
2023-11-07 18:15:53 +01:00
parent e66b313765
commit bee2c2b4fe
3 changed files with 17 additions and 15 deletions

View File

@@ -53,7 +53,7 @@ static void bzRaylibLogger(int msgType, const char *text, va_list args) {
default:;
}
bzLoggerOnlyLog(level, text, args);
bzLoggerOnlyLogV(level, text, args);
}
int main(int argc, const char **argv) {