Fix several bugs

This commit is contained in:
Nishi 2026-06-20 21:16:45 +09:00
commit ef900e7358
9 changed files with 24 additions and 15 deletions

View file

@ -8,8 +8,8 @@
#if defined(_MSC_VER)
#if defined(_MSC_VER) && _MSC_VER < 1900
static int __inline sj4_snprintf(char* buffer, size_t count, const char* fmt, ...){
int st;
static int __inline sj4_snprintf(char* buffer, size_t count, const char* fmt, ...) {
int st;
va_list va;
va_start(va, fmt);