Renamed function to SetTraceLog()
I think is clearer this way...
This commit is contained in:
parent
e517d8fd16
commit
0bd06eec51
2 changed files with 2 additions and 2 deletions
|
@ -728,7 +728,7 @@ RLAPI Matrix MatrixIdentity(void); // Returns ide
|
||||||
// Misc. functions
|
// Misc. functions
|
||||||
RLAPI void ShowLogo(void); // Activate raylib logo at startup (can be done with flags)
|
RLAPI void ShowLogo(void); // Activate raylib logo at startup (can be done with flags)
|
||||||
RLAPI void SetConfigFlags(unsigned char flags); // Setup window configuration flags (view FLAGS)
|
RLAPI void SetConfigFlags(unsigned char flags); // Setup window configuration flags (view FLAGS)
|
||||||
RLAPI void SetTraceLogTypes(unsigned char types); // Enable trace log message types (bit flags based)
|
RLAPI void SetTraceLog(unsigned char types); // Enable trace log message types (bit flags based)
|
||||||
RLAPI void TraceLog(int logType, const char *text, ...); // Show trace log messages (LOG_INFO, LOG_WARNING, LOG_ERROR, LOG_DEBUG)
|
RLAPI void TraceLog(int logType, const char *text, ...); // Show trace log messages (LOG_INFO, LOG_WARNING, LOG_ERROR, LOG_DEBUG)
|
||||||
RLAPI void TakeScreenshot(const char *fileName); // Takes a screenshot of current screen (saved a .png)
|
RLAPI void TakeScreenshot(const char *fileName); // Takes a screenshot of current screen (saved a .png)
|
||||||
RLAPI int GetRandomValue(int min, int max); // Returns a random value between min and max (both included)
|
RLAPI int GetRandomValue(int min, int max); // Returns a random value between min and max (both included)
|
||||||
|
|
|
@ -88,7 +88,7 @@ static int android_close(void *cookie);
|
||||||
//----------------------------------------------------------------------------------
|
//----------------------------------------------------------------------------------
|
||||||
|
|
||||||
// Enable trace log message types (bit flags based)
|
// Enable trace log message types (bit flags based)
|
||||||
void SetTraceLogTypes(unsigned char types)
|
void SetTraceLog(unsigned char types)
|
||||||
{
|
{
|
||||||
logTypeFlags = types;
|
logTypeFlags = types;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue