about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/game/client/components/console.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/game/client/components/console.cpp b/src/game/client/components/console.cpp
index d70c83a5..201f145f 100644
--- a/src/game/client/components/console.cpp
+++ b/src/game/client/components/console.cpp
@@ -369,9 +369,7 @@ void CONSOLE::on_render()
 		gfx_text(0, screen.w-version_width-5, y, font_size, buf, -1);
 
 		// render possible commands
-		if(console->input.get_string()[0] == 0)
-			gfx_text_ex(&info.cursor, "No matching possible", -1);
-		else
+		if(console->input.get_string()[0] != 0)
 			console_possible_commands(console->completion_buffer, console->completion_flagmask, possible_commands_render_callback, &info);
 		gfx_text_color(1,1,1,1);