summaryrefslogtreecommitdiffhomepage
path: root/src/utils.c
diff options
context:
space:
mode:
authorRay <[email protected]>2019-01-21 10:32:14 +0100
committerRay <[email protected]>2019-01-21 10:32:14 +0100
commit4467292a2d5a5e0fbe2c3a28f8ffb1480c7b66ed (patch)
tree8768e9873ad6d050f9ff66a1eadb7bde24676f5a /src/utils.c
parente91c84e33a5ae1ab3a963445b545bbcde2298224 (diff)
downloadraylib-4467292a2d5a5e0fbe2c3a28f8ffb1480c7b66ed.tar.gz
raylib-4467292a2d5a5e0fbe2c3a28f8ffb1480c7b66ed.zip
Review last PR formatting
Diffstat (limited to 'src/utils.c')
-rw-r--r--src/utils.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/utils.c b/src/utils.c
index ffce11fb..9bf91896 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -66,8 +66,7 @@ AAssetManager *assetManager;
//----------------------------------------------------------------------------------
#if defined(PLATFORM_ANDROID)
/* This should be in <stdio.h>, but Travis doesn't find it... */
-FILE *funopen(const void *cookie, int (*readfn)(void *, char *, int),
- int (*writefn)(void *, const char *, int),
+FILE *funopen(const void *cookie, int (*readfn)(void *, char *, int), int (*writefn)(void *, const char *, int),
fpos_t (*seekfn)(void *, fpos_t, int), int (*closefn)(void *));
static int android_read(void *cookie, char *buf, int size);
@@ -80,19 +79,19 @@ static int android_close(void *cookie);
// Module Functions Definition - Utilities
//----------------------------------------------------------------------------------
-// Set the current threshold (minimum) log level.
+// Set the current threshold (minimum) log level
void SetTraceLogLevel(int logType)
{
logTypeLevel = logType;
}
-// Set the exit threshold (minimum) log level.
+// Set the exit threshold (minimum) log level
void SetTraceLogExit(int logType)
{
logTypeExit = logType;
}
-// Set a trace log callback to enable custom logging bypassing raylib's one
+// Set a trace log callback to enable custom logging
void SetTraceLogCallback(TraceLogCallback callback)
{
logCallback = callback;
@@ -102,9 +101,8 @@ void SetTraceLogCallback(TraceLogCallback callback)
void TraceLog(int logType, const char *text, ...)
{
#if defined(SUPPORT_TRACELOG)
- if (logType < logTypeLevel) { // Message has level below current threshold, don't emit.
- return;
- }
+ // Message has level below current threshold, don't emit
+ if (logType < logTypeLevel) return;
va_list args;
va_start(args, text);