From 9d8c3bd60576647399822ac2464ca28177a255db Mon Sep 17 00:00:00 2001 From: Nick Koirala Date: Thu, 6 Nov 2025 11:13:40 +1300 Subject: [PATCH] chore: remove messy text from window --- scripts/test.as | 2 +- src/Application.cpp | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/test.as b/scripts/test.as index f207f86..209cfb9 100644 --- a/scripts/test.as +++ b/scripts/test.as @@ -8,4 +8,4 @@ void Update(float dt) { void Draw() { DrawText("Hello from AngelScript - Working perfectly!", int(x), int(y), 20, 0xFF0000FF); -} +} \ No newline at end of file diff --git a/src/Application.cpp b/src/Application.cpp index 7763b7e..510556d 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -70,8 +70,6 @@ void Application::Draw() { // Show script error status in top left if there's an error, otherwise show normal message if (scriptCompilationError) { DrawText("SCRIPT ERROR - Check console for details", 10, 10, 16, RED); - } else { - DrawText("Modify scripts/test.as to hot-reload!", 50, 50, 20, DARKGRAY); } // Call script Draw function