From 6c1040c740af5756cdfcc5572216995112bb4442 Mon Sep 17 00:00:00 2001 From: Michael Moon Date: Sat, 12 Feb 2011 22:20:33 +1100 Subject: [PATCH] typo --- gcode_process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcode_process.c b/gcode_process.c index 844d76a..5f9965a 100644 --- a/gcode_process.c +++ b/gcode_process.c @@ -96,7 +96,7 @@ void process_gcode_command() { if (next_target.target.Y < (Y_MIN * STEPS_PER_MM_Y)) next_target.target.Y = Y_MIN; #endif - #ifdef Y_MAY + #ifdef Y_MAX if (next_target.target.Y > (Y_MAX * STEPS_PER_MM_Y)) next_target.target.Y = Y_MAX; #endif