Fixed base tab not properly closing the tab.

Updated dependencies.
This commit is contained in:
gir489
2020-12-05 20:53:58 -05:00
parent adecc49471
commit fc80429b2a
8 changed files with 13 additions and 11 deletions

View File

@ -82,7 +82,7 @@ namespace big
{ {
g_running = false; g_running = false;
} }
ImGui::EndTabItem();
} }
ImGui::EndTabItem();
} }
} }

View File

@ -5,8 +5,8 @@
#include "pointers.hpp" #include "pointers.hpp"
#include "renderer.hpp" #include "renderer.hpp"
#include <imgui.h> #include <imgui.h>
#include <imgui_impl_dx11.h> #include <backends/imgui_impl_dx11.h>
#include <imgui_impl_win32.h> #include <backends/imgui_impl_win32.h>
#include <imgui_internal.h> #include <imgui_internal.h>
IMGUI_IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); IMGUI_IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);

View File

@ -44,7 +44,8 @@ workspace "BigBaseV2"
{ {
"4100", -- C4100: unreferenced formal parameter "4100", -- C4100: unreferenced formal parameter
"4201", -- C4201: nameless struct/union "4201", -- C4201: nameless struct/union
"4307" -- C4307: integral constant overflow "4307", -- C4307: integral constant overflow
"4996" -- C4996: deprecated in C++17
} }
end end
@ -74,9 +75,10 @@ workspace "BigBaseV2"
"vendor/%{prj.name}/imgui.cpp", "vendor/%{prj.name}/imgui.cpp",
"vendor/%{prj.name}/imgui_demo.cpp", "vendor/%{prj.name}/imgui_demo.cpp",
"vendor/%{prj.name}/imgui_draw.cpp", "vendor/%{prj.name}/imgui_draw.cpp",
"vendor/%{prj.name}/imgui_tables.cpp",
"vendor/%{prj.name}/imgui_widgets.cpp", "vendor/%{prj.name}/imgui_widgets.cpp",
"vendor/%{prj.name}/examples/imgui_impl_dx11.cpp", "vendor/%{prj.name}/backends/imgui_impl_dx11.cpp",
"vendor/%{prj.name}/examples/imgui_impl_win32.cpp" "vendor/%{prj.name}/backends/imgui_impl_win32.cpp"
} }
includedirs includedirs

2
vendor/ImGui vendored

2
vendor/MinHook vendored

2
vendor/fmtlib vendored

2
vendor/g3log vendored

2
vendor/json vendored