RARCH_LOG_V - increase buffer size from 256 to 1024, otherwise

Vulkan log messages get truncated
This commit is contained in:
LibretroAdmin 2022-08-31 16:38:30 +02:00
parent a96c5f77c8
commit fd41b0f90c

View File

@ -267,7 +267,7 @@ void RARCH_LOG_V(const char *tag, const char *fmt, va_list ap)
#else
FILE *fp = (FILE*)g_verbosity->fp;
#if defined(HAVE_QT) || defined(__WINRT__)
char buffer[256];
char buffer[1024];
buffer[0] = '\0';
/* Ensure null termination and line break in error case */