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