1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 09:32:29 +01:00
This commit is contained in:
IntelOrca
2015-08-30 14:25:51 +01:00
parent bea74ee261
commit be3c54d266

View File

@@ -292,6 +292,8 @@ static void rwopsprintf(SDL_RWops *file, const char *format, ...)
char buffer[64];
vsprintf(buffer, format, args);
SDL_RWwrite(file, buffer, strlen(buffer) + 1, 1);
va_end(args);
}