Răsfoiți Sursa

Update README.md

omar 7 ani în urmă
părinte
comite
faa3c66154
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -50,7 +50,7 @@ ImGui::SliderFloat("float", &f, 0.0f, 1.0f);
 
 
 ```cpp
 ```cpp
 // C++ code
 // C++ code
-// Created a window called "My First Tool" with a menu bar.
+// Create a window called "My First Tool", with a menu bar.
 ImGui::Begin("My First Tool", &my_tool_active, ImGuiWindowFlags_MenuBar);
 ImGui::Begin("My First Tool", &my_tool_active, ImGuiWindowFlags_MenuBar);
 if (ImGui::BeginMenuBar())
 if (ImGui::BeginMenuBar())
 {
 {
@@ -73,7 +73,7 @@ ImGui::PlotLines("Frame Times", my_values, IM_ARRAYSIZE(my_values));
  
  
 // Display contents in a scrolling region
 // Display contents in a scrolling region
 ImGui::TextColored(ImVec4(1,1,0,1), "Important Stuff");
 ImGui::TextColored(ImVec4(1,1,0,1), "Important Stuff");
-ImGui::BeginChild("Scrolling", ImVec2(0,0), true);
+ImGui::BeginChild("Scrolling");
 for (int n = 0; n < 50; n++)
 for (int n = 0; n < 50; n++)
     ImGui::Text("%04d: Some text", n);
     ImGui::Text("%04d: Some text", n);
 ImGui::EndChild();
 ImGui::EndChild();