소스 검색

[rcore] use LOG_WARNING when InitPlatform() fails

...as this is preferred over LOG_ERROR.

Requested-by: https://github.com/raysan5/raylib/pull/4803#discussion_r1976651724
pull/4803/head
sleeptightAnsiC 1 개월 전
부모
커밋
498e884daf
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/rcore.c

+ 1
- 1
src/rcore.c 파일 보기

@ -685,7 +685,7 @@ void InitWindow(int width, int height, const char *title)
if (result != 0)
{
TRACELOG(LOG_ERROR, "SYSTEM: Failed to initialize Platform");
TRACELOG(LOG_WARNING, "SYSTEM: Failed to initialize Platform");
return;
}
//--------------------------------------------------------------

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