Minor tweaks to follow code conventions

This commit is contained in:
Ray 2021-06-26 13:45:39 +02:00
parent 89708edf7f
commit 00c8795385
2 changed files with 2 additions and 2 deletions

View file

@ -6464,7 +6464,7 @@ UWPMouseSetPosFunc UWPGetMouseSetPosFunc() { return uwpMouseSetPosFunc; }
void UWPSetMouseSetPosFunc(UWPMouseSetPosFunc func) { uwpMouseSetPosFunc = func; } void UWPSetMouseSetPosFunc(UWPMouseSetPosFunc func) { uwpMouseSetPosFunc = func; }
void *UWPGetCoreWindowPtr() { return uwpCoreWindow; } 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 UWPMouseWheelEvent(int deltaY) { CORE.Input.Mouse.currentWheelMove = (float)deltaY; }
void UWPKeyDownEvent(int key, bool down, bool controlKey) void UWPKeyDownEvent(int key, bool down, bool controlKey)

View file

@ -124,7 +124,7 @@ void TraceLog(int logType, const char *text, ...)
} }
#if defined(PLATFORM_ANDROID) #if defined(PLATFORM_ANDROID)
switch(logType) switch (logType)
{ {
case LOG_TRACE: __android_log_vprint(ANDROID_LOG_VERBOSE, "raylib", text, args); break; 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; case LOG_DEBUG: __android_log_vprint(ANDROID_LOG_DEBUG, "raylib", text, args); break;