Browse Source

Adding MACRO constant to specify the internal buffer size.

pull/723/head
Marco Lizza 6 years ago
parent
commit
ce98cc6285
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      src/utils.c

+ 3
- 1
src/utils.c View File

@ -46,6 +46,8 @@
#include <stdarg.h> // Required for: va_list, va_start(), vfprintf(), va_end() #include <stdarg.h> // Required for: va_list, va_start(), vfprintf(), va_end()
#include <string.h> // Required for: strlen(), strrchr(), strcmp() #include <string.h> // Required for: strlen(), strrchr(), strcmp()
#define MAX_TRACELOG_BUFFER_SIZE 128 // Max length of a trace-log message.
//---------------------------------------------------------------------------------- //----------------------------------------------------------------------------------
// Global Variables Definition // Global Variables Definition
//---------------------------------------------------------------------------------- //----------------------------------------------------------------------------------
@ -93,7 +95,7 @@ void SetTraceLogCallback(TraceLogCallback callback)
void TraceLog(int msgType, const char *text, ...) void TraceLog(int msgType, const char *text, ...)
{ {
#if defined(SUPPORT_TRACELOG) #if defined(SUPPORT_TRACELOG)
">static char buffer[mi">128];
char buffer[n">MAX_TRACELOG_BUFFER_SIZE];
va_list args; va_list args;
va_start(args, text); va_start(args, text);

Loading…
Cancel
Save