diff --git a/src/core.c b/src/core.c index a456fab20..d92261246 100644 --- a/src/core.c +++ b/src/core.c @@ -6464,7 +6464,7 @@ UWPMouseSetPosFunc UWPGetMouseSetPosFunc() { return uwpMouseSetPosFunc; } void UWPSetMouseSetPosFunc(UWPMouseSetPosFunc func) { uwpMouseSetPosFunc = func; } void *UWPGetCoreWindowPtr() { return uwpCoreWindow; } -void UWPSetCoreWindowPtr(void* ptr) { uwpCoreWindow = ptr; } +void UWPSetCoreWindowPtr(void *ptr) { uwpCoreWindow = ptr; } void UWPMouseWheelEvent(int deltaY) { CORE.Input.Mouse.currentWheelMove = (float)deltaY; } void UWPKeyDownEvent(int key, bool down, bool controlKey) diff --git a/src/utils.c b/src/utils.c index 2d15bdb3b..2e3e4fd31 100644 --- a/src/utils.c +++ b/src/utils.c @@ -124,7 +124,7 @@ void TraceLog(int logType, const char *text, ...) } #if defined(PLATFORM_ANDROID) - switch(logType) + switch (logType) { case LOG_TRACE: __android_log_vprint(ANDROID_LOG_VERBOSE, "raylib", text, args); break; case LOG_DEBUG: __android_log_vprint(ANDROID_LOG_DEBUG, "raylib", text, args); break;