소스 검색

Incremented version number for reference

raysan5 8 년 전
부모
커밋
36fcffeaae
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/core.c

+ 2 - 2
src/core.c

@@ -412,7 +412,7 @@ static void *GamepadThread(void *arg);                  // Mouse reading thread
 // Initialize window and OpenGL context
 void InitWindow(int width, int height, const char *title)
 {
-    TraceLog(LOG_INFO, "Initializing raylib (v1.7.0)");
+    TraceLog(LOG_INFO, "Initializing raylib (v1.8.0)");
 
     // Store window title (could be useful...)
     windowTitle = title;
@@ -475,7 +475,7 @@ void InitWindow(int width, int height, const char *title)
 // Initialize Android activity
 void InitWindow(int width, int height, void *state)
 {
-    TraceLog(LOG_INFO, "Initializing raylib (v1.7.0)");
+    TraceLog(LOG_INFO, "Initializing raylib (v1.8.0)");
 
     app_dummy();