Browse Source

REMOVED: SetTraceLogExit()

I feel nobody has ever used this function...
raysan5 4 years ago
parent
commit
62ccec0ac5
2 changed files with 0 additions and 7 deletions
  1. 0 1
      src/raylib.h
  2. 0 6
      src/utils.c

+ 0 - 1
src/raylib.h

@@ -972,7 +972,6 @@ RLAPI double GetTime(void);                                       // Returns ela
 RLAPI void SetConfigFlags(unsigned int flags);                    // Setup init configuration flags (view FLAGS)
 RLAPI void SetConfigFlags(unsigned int flags);                    // Setup init configuration flags (view FLAGS)
 
 
 RLAPI void SetTraceLogLevel(int logType);                         // Set the current threshold (minimum) log level
 RLAPI void SetTraceLogLevel(int logType);                         // Set the current threshold (minimum) log level
-RLAPI void SetTraceLogExit(int logType);                          // Set the exit threshold (minimum) log level
 RLAPI void SetTraceLogCallback(TraceLogCallback callback);        // Set a trace log callback to enable custom logging
 RLAPI void SetTraceLogCallback(TraceLogCallback callback);        // Set a trace log callback to enable custom logging
 RLAPI void TraceLog(int logType, const char *text, ...);          // Show trace log messages (LOG_DEBUG, LOG_INFO, LOG_WARNING, LOG_ERROR)
 RLAPI void TraceLog(int logType, const char *text, ...);          // Show trace log messages (LOG_DEBUG, LOG_INFO, LOG_WARNING, LOG_ERROR)
 
 

+ 0 - 6
src/utils.c

@@ -97,12 +97,6 @@ void SetTraceLogLevel(int logType)
     logTypeLevel = logType;
     logTypeLevel = logType;
 }
 }
 
 
-// Set the exit threshold (minimum) log level
-void SetTraceLogExit(int logType)
-{
-    logTypeExit = logType;
-}
-
 // Set a trace log callback to enable custom logging
 // Set a trace log callback to enable custom logging
 void SetTraceLogCallback(TraceLogCallback callback)
 void SetTraceLogCallback(TraceLogCallback callback)
 {
 {