diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-06-04 20:25:41 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-06-04 20:25:48 -0700 |
commit | bfaa3fd95b577a08676225220c61b866a295fd03 (patch) | |
tree | 4671db466c6d9ea9841d6c80de3884fd84ce0441 | |
parent | 9ee5d1c9133c45c738ec3ef86001582bbe4a32d0 (diff) | |
download | lines.love-bfaa3fd95b577a08676225220c61b866a295fd03.tar.gz |
bugfix in help
-rw-r--r-- | help.lua | 4 |
1 files 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) |