From bfaa3fd95b577a08676225220c61b866a295fd03 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sat, 4 Jun 2022 20:25:41 -0700 Subject: [PATCH] bugfix in help --- help.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/help.lua b/help.lua index e55973e..e9725b7 100644 --- a/help.lua +++ b/help.lua @@ -103,11 +103,11 @@ function draw_help_with_mouse_pressed(drawing) y = y + Line_height end if Current_drawing_mode ~= 'rectangle' then - love.graphics.print("* Press 'g' to switch to drawing rectangles", 16+30,y) + love.graphics.print("* Press 'r' to switch to drawing rectangles", 16+30,y) y = y + Line_height end if Current_drawing_mode ~= 'square' then - love.graphics.print("* Press 'g' to switch to drawing squares", 16+30,y) + love.graphics.print("* Press 's' to switch to drawing squares", 16+30,y) y = y + Line_height end love.graphics.setColor(0,0.5,0, 0.1)