From fceb47f2afbaf2e62da5203927c2dc4c78d3bc5c Mon Sep 17 00:00:00 2001 From: xxSeys1 Date: Thu, 17 Oct 2024 18:47:48 +0200 Subject: [PATCH] fix context not implemented --- Source/Engine/Debug/DebugDraw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/Debug/DebugDraw.cpp b/Source/Engine/Debug/DebugDraw.cpp index dccfcc206..077bf9b80 100644 --- a/Source/Engine/Debug/DebugDraw.cpp +++ b/Source/Engine/Debug/DebugDraw.cpp @@ -2147,6 +2147,6 @@ void DebugDraw::DrawText(const StringView& text, const Transform& transform, con void DebugDraw::Clear(void* context) { - DebugDraw::UpdateContext(nullptr, MAX_float); + DebugDraw::UpdateContext(context, MAX_float); } #endif