about summary refs log tree commit diff stats
path: root/help.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-06-04 20:35:31 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-06-04 20:35:31 -0700
commitdb8b5b506274bc01376303d3a3a2559954e9389b (patch)
tree684314f0921945184494856abd2320e76aa62dae /help.lua
parentbfaa3fd95b577a08676225220c61b866a295fd03 (diff)
downloadlines.love-db8b5b506274bc01376303d3a3a2559954e9389b.tar.gz
switch circles to 'o' to avoid conflicting with copy
Diffstat (limited to 'help.lua')
-rw-r--r--help.lua4
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