chore: remove messy text from window

This commit is contained in:
2025-11-06 11:13:40 +13:00
parent fc1247f458
commit 9d8c3bd605
2 changed files with 1 additions and 3 deletions

View File

@@ -8,4 +8,4 @@ void Update(float dt) {
void Draw() {
DrawText("Hello from AngelScript - Working perfectly!", int(x), int(y), 20, 0xFF0000FF);
}
}

View File

@@ -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