소스 검색

sokol_log.h: minor comment tweaks

Andre Weissflog 2 년 전
부모
커밋
ad034d2826
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      sokol_log.h

+ 2 - 2
sokol_log.h

@@ -46,14 +46,14 @@
 
 
         - Windows: stderr + OutputDebugStringA()
         - Windows: stderr + OutputDebugStringA()
         - macOS/iOS/Linux: stderr + syslog()
         - macOS/iOS/Linux: stderr + syslog()
-        - Emscripten: browser console
+        - Emscripten: console.info()/warn()/error()
         - Android: __android_log_write()
         - Android: __android_log_write()
 
 
     In debug mode, a log message might look like this:
     In debug mode, a log message might look like this:
 
 
         [saudio] [error] /Users/floh/projects/sokol/sokol_audio.h:2422:0: COREAUDIO_NEW_OUTPUT_FAILED (id:32)
         [saudio] [error] /Users/floh/projects/sokol/sokol_audio.h:2422:0: COREAUDIO_NEW_OUTPUT_FAILED (id:32)
 
 
-    The source path and line number is formatted in like compiler errors, in some IDEs (like VSCode)
+    The source path and line number is formatted like compiler errors, in some IDEs (like VSCode)
     such error messages are clickable.
     such error messages are clickable.
 
 
     In release mode, logging is less verbose as to not bloat the executable with string data, but you still get
     In release mode, logging is less verbose as to not bloat the executable with string data, but you still get