Skip to content

Commit 31b0f31

Browse files
dependabot[bot]Xottab-DUTY
authored andcommitted
Bump Externals/imgui from 1820fe5 to 15b96fd
Bumps [Externals/imgui](https://github.com/ocornut/imgui) from `1820fe5` to `15b96fd`. - [Release notes](https://github.com/ocornut/imgui/releases) - [Commits](ocornut/imgui@1820fe5...15b96fd) --- updated-dependencies: - dependency-name: Externals/imgui dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent ed17bbc commit 31b0f31

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Externals/imgui

Submodule imgui updated 52 files

src/xrEngine/Device_imgui.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ void CRenderDevice::InitializeImGui()
5454

5555
platform_io.Platform_GetClipboardTextFn = [](ImGuiContext* ctx) -> const char*
5656
{
57-
ImGuiPlatformIO& platform_io = ImGui::GetPlatformIOEx(ctx);
57+
ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO(ctx);
5858
auto clipboard_text_data = static_cast<char*>(platform_io.Platform_ClipboardUserData);
5959

6060
if (clipboard_text_data)
@@ -244,7 +244,7 @@ void CRenderDevice::DestroyImGui()
244244
xr_free(io.IniFilename);
245245
xr_free(io.LogFilename);
246246

247-
ImGuiPlatformIO& platform_io = ImGui::GetPlatformIOEx(m_imgui_context);
247+
ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO(m_imgui_context);
248248

249249
if (platform_io.Platform_ClipboardUserData)
250250
{

0 commit comments

Comments
 (0)