From 9e19d10f9d6f0115a03588993b89649885022677 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Sun, 16 Jan 2022 19:19:45 -0800 Subject: [PATCH] Externals: Enable IMGUI_DISABLE_OBSOLETE_FUNCTIONS --- Externals/imgui/imconfig.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Externals/imgui/imconfig.h b/Externals/imgui/imconfig.h index 7082c55075..f255601704 100644 --- a/Externals/imgui/imconfig.h +++ b/Externals/imgui/imconfig.h @@ -27,7 +27,7 @@ //#define IMGUI_API __declspec( dllimport ) //---- Don't define obsolete functions/enums/behaviors. Consider enabling from time to time after updating to avoid using soon-to-be obsolete function/names. -//#define IMGUI_DISABLE_OBSOLETE_FUNCTIONS +#define IMGUI_DISABLE_OBSOLETE_FUNCTIONS //---- Disable all of Dear ImGui or don't implement standard windows. // It is very strongly recommended to NOT disable the demo windows during development. Please read comments in imgui_demo.cpp.