From 386ce49c58393d469fc477340e7725cb4170f50c Mon Sep 17 00:00:00 2001 From: ocornut Date: Thu, 19 Mar 2026 18:17:35 +0100 Subject: [PATCH] Backends: DirectX9: fixed build typo in 0500e54. --- backends/imgui_impl_dx9.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backends/imgui_impl_dx9.cpp b/backends/imgui_impl_dx9.cpp index 81f142157..24911fadd 100644 --- a/backends/imgui_impl_dx9.cpp +++ b/backends/imgui_impl_dx9.cpp @@ -432,7 +432,7 @@ void ImGui_ImplDX9_UpdateTexture(ImTextureData* tex) } else if (tex->Status == ImTextureStatus_WantDestroy) { - if (tex->ID != ImTextureID_Invalid) + if (tex->TexID != ImTextureID_Invalid) if (LPDIRECT3DTEXTURE9 backend_tex = (LPDIRECT3DTEXTURE9)tex->TexID) { IM_ASSERT(tex->TexID == (ImTextureID)(intptr_t)backend_tex);