diff options
Diffstat (limited to 'help.lua')
-rw-r--r-- | help.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/help.lua b/help.lua index e9725b7..e2f70cf 100644 --- a/help.lua +++ b/help.lua @@ -29,7 +29,7 @@ function draw_help_without_mouse_pressed(drawing) y = y + Line_height end if Current_drawing_mode ~= 'circle' then - love.graphics.print("* Press 'ctrl+c' to switch to drawing circles/arcs", 16+30,y) + love.graphics.print("* Press 'ctrl+o' to switch to drawing circles/arcs", 16+30,y) y = y + Line_height end if Current_drawing_mode ~= 'polygon' then @@ -95,7 +95,7 @@ function draw_help_with_mouse_pressed(drawing) y = y + Line_height end if Current_drawing_mode ~= 'circle' then - love.graphics.print("* Press 'c' to switch to drawing circles/arcs", 16+30,y) + love.graphics.print("* Press 'o' to switch to drawing circles/arcs", 16+30,y) y = y + Line_height end if Current_drawing_mode ~= 'polygon' then |