Fixed base tab not properly closing the tab.
Updated dependencies.
This commit is contained in:
@ -82,7 +82,7 @@ namespace big
|
|||||||
{
|
{
|
||||||
g_running = false;
|
g_running = false;
|
||||||
}
|
}
|
||||||
|
ImGui::EndTabItem();
|
||||||
}
|
}
|
||||||
ImGui::EndTabItem();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -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);
|
||||||
|
@ -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/ImGui
vendored
Submodule vendor/ImGui updated: ec2a24a5f1...9874077fc0
2
vendor/MinHook
vendored
2
vendor/MinHook
vendored
Submodule vendor/MinHook updated: 8fda4f5481...248aad5d9b
2
vendor/fmtlib
vendored
2
vendor/fmtlib
vendored
Submodule vendor/fmtlib updated: 770a94edef...a6fafe2f01
2
vendor/g3log
vendored
2
vendor/g3log
vendored
Submodule vendor/g3log updated: 4000c5c899...2fca06ff6d
2
vendor/json
vendored
2
vendor/json
vendored
Submodule vendor/json updated: 456478b3c5...350ff4f7ce
Reference in New Issue
Block a user