Browse Source

move rlSetupKeymap into rlImGuiBeginInitImGui so that it can be used with custom setups

Jeffery Myers 2 năm trước cách đây
mục cha
commit
a06d8a9c86
1 tập tin đã thay đổi với 6 bổ sung6 xóa
  1. 6 6
      rlImGui.cpp

+ 6 - 6
rlImGui.cpp

@@ -263,11 +263,6 @@ void SetupMouseCursors()
 	MouseCursorMap[ImGuiMouseCursor_NotAllowed] = MOUSE_CURSOR_NOT_ALLOWED;
 }
 
-void rlImGuiBeginInitImGui()
-{
-	ImGui::CreateContext(nullptr);
-}
-
 void rlImGuiEndInitImGui()
 {
 	SetupMouseCursors();
@@ -400,9 +395,14 @@ void rlSetupKeymap()
 	RaylibKeyMap[KEY_KP_EQUAL] = ImGuiKey_KeypadEqual;
 }
 
-void rlImGuiSetup(bool dark)
+void rlImGuiBeginInitImGui()
 {
 	rlSetupKeymap();
+	ImGui::CreateContext(nullptr);
+}
+
+void rlImGuiSetup(bool dark)
+{
 	rlImGuiBeginInitImGui();
 
 	if (dark)