MAX_TRACELOG_BUFFER_SIZE is 256 since raylib 4.5
This commit is contained in:
parent
f68049cf26
commit
ac27873749
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
||||||
#include <stdio.h> // Required for: vprintf()
|
#include <stdio.h> // Required for: vprintf()
|
||||||
#include <string.h> // Required for: strcpy(), strcat()
|
#include <string.h> // Required for: strcpy(), strcat()
|
||||||
|
|
||||||
#define MAX_TRACELOG_BUFFER_SIZE 128 // As defined in utils.c from raylib
|
#define MAX_TRACELOG_BUFFER_SIZE 256 // As defined in utils.c from raylib
|
||||||
|
|
||||||
void rayLogWrapperCallback(int logType, const char *text, va_list args) {
|
void rayLogWrapperCallback(int logType, const char *text, va_list args) {
|
||||||
char buffer[MAX_TRACELOG_BUFFER_SIZE] = { 0 };
|
char buffer[MAX_TRACELOG_BUFFER_SIZE] = { 0 };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue