瀏覽代碼

make simple example be resizeble

Jeffery Myers 1 年之前
父節點
當前提交
3207174f69
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      examples/simple.cpp

+ 1 - 1
examples/simple.cpp

@@ -24,7 +24,7 @@ int main(int argc, char* argv[])
 	int screenWidth = 1280;
 	int screenHeight = 800;
 
-	SetConfigFlags(FLAG_MSAA_4X_HINT | FLAG_VSYNC_HINT);
+	SetConfigFlags(FLAG_MSAA_4X_HINT | FLAG_VSYNC_HINT | FLAG_WINDOW_RESIZABLE);
 	InitWindow(screenWidth, screenHeight, "raylib-Extras [ImGui] example - simple ImGui Demo");
 	SetTargetFPS(144);
 	rlImGuiSetup(true);