浏览代码

Update core_basic_window.c

Ray 4 年之前
父节点
当前提交
43efe92e21
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      examples/core/core_basic_window.c

+ 2 - 2
examples/core/core_basic_window.c

@@ -45,9 +45,9 @@ int main(void)
         //----------------------------------------------------------------------------------
         BeginDrawing();
 
-        ClearBackground(RAYWHITE);
+            ClearBackground(RAYWHITE);
 
-        DrawText("Congrats! You created your first window!", 190, 200, 20, LIGHTGRAY);
+            DrawText("Congrats! You created your first window!", 190, 200, 20, LIGHTGRAY);
 
         EndDrawing();
         //----------------------------------------------------------------------------------