(Qt/Logging) Increase log buffer to 2048 characters - Vulkan

validation layer messages output correctly.
This commit is contained in:
LibretroAdmin 2022-10-06 03:19:28 +02:00
parent fbf55a1999
commit 141c33ceb5

View File

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