浏览代码

Sync SDL3 wiki -> header

SDL Wiki Bot 1 年之前
父节点
当前提交
739f78302b
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      docs/README-cmake.md

+ 2 - 2
docs/README-cmake.md

@@ -63,7 +63,7 @@ endif()
 # Create your game executable target as usual
 add_executable(mygame WIN32 mygame.c)
 
-# Link to the actual SDL3 library.  
+# Link to the actual SDL3 library.
 target_link_libraries(mygame PRIVATE SDL3::SDL3)
 ```
 
@@ -280,7 +280,7 @@ int main(int argc, char *argv[]) {
         if (finished) {
             break;
         }
-    
+
         SDL_SetRenderDrawColor(renderer, 80, 80, 80, SDL_ALPHA_OPAQUE);
         SDL_RenderClear(renderer);
         SDL_RenderPresent(renderer);