summaryrefslogtreecommitdiffhomepage
path: root/src/utils.c
diff options
context:
space:
mode:
authorRay <[email protected]>2020-02-03 19:13:24 +0100
committerRay <[email protected]>2020-02-03 19:13:24 +0100
commitcde26c743c382abea56ea5cd9c88d36970a61eea (patch)
tree0b54c78c5fa8f5f4b2c99778cd6dc228b512e0ca /src/utils.c
parent40b73a8a91afb26becfcb39560dae73447ce15af (diff)
downloadraylib-cde26c743c382abea56ea5cd9c88d36970a61eea.tar.gz
raylib-cde26c743c382abea56ea5cd9c88d36970a61eea.zip
Replace TraceLog() function by TRACELOG macro
Added SUPPORT_TRACELOG_DEBUG config
Diffstat (limited to 'src/utils.c')
-rw-r--r--src/utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utils.c b/src/utils.c
index 55b85cbe..8b8fb3ec 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -195,7 +195,7 @@ static int android_read(void *cookie, char *buf, int size)
static int android_write(void *cookie, const char *buf, int size)
{
- TraceLog(LOG_ERROR, "Can't provide write access to the APK");
+ TRACELOG(LOG_ERROR, "Can't provide write access to the APK");
return EACCES;
}
@@ -252,7 +252,7 @@ void UWPSendMessage(UWPMessage *msg)
UWPInMessageId++;
UWPInMessages[UWPInMessageId] = msg;
}
- else TraceLog(LOG_WARNING, "[UWP Messaging] Not enough array space to register new UWP inbound Message.");
+ else TRACELOG(LOG_WARNING, "[UWP Messaging] Not enough array space to register new UWP inbound Message.");
}
void SendMessageToUWP(UWPMessage *msg)
@@ -262,7 +262,7 @@ void SendMessageToUWP(UWPMessage *msg)
UWPOutMessageId++;
UWPOutMessages[UWPOutMessageId] = msg;
}
- else TraceLog(LOG_WARNING, "[UWP Messaging] Not enough array space to register new UWP outward Message.");
+ else TRACELOG(LOG_WARNING, "[UWP Messaging] Not enough array space to register new UWP outward Message.");
}
bool HasMessageFromUWP(void)