소스 검색

Minor tweaks to follow code conventions

pull/1856/head
Ray 4 년 전
부모
커밋
00c8795385
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +1
    -1
      src/core.c
  2. +1
    -1
      src/utils.c

+ 1
- 1
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)

+ 1
- 1
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;

불러오는 중...
취소
저장