diff options
| author | Ray <[email protected]> | 2021-06-26 13:45:39 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2021-06-26 13:45:39 +0200 |
| commit | 00c87953853d46ede8ac8fa8c1b2640dc941f82c (patch) | |
| tree | 8c0e775185b4e9796ee0a144eec376b767b50792 | |
| parent | 89708edf7fc7403212530bb2bb4c2247e4bb2a5d (diff) | |
| download | raylib-00c87953853d46ede8ac8fa8c1b2640dc941f82c.tar.gz raylib-00c87953853d46ede8ac8fa8c1b2640dc941f82c.zip | |
Minor tweaks to follow code conventions
| -rw-r--r-- | src/core.c | 2 | ||||
| -rw-r--r-- | src/utils.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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 2d15bdb3..2e3e4fd3 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; |
