50 is ok for marching ants speed too. :)

-Yosh
This commit is contained in:
Manish Singh 1998-01-27 23:54:41 +00:00
parent b56f9f515f
commit 626883c2e1
4 changed files with 4 additions and 4 deletions

View File

@ -569,7 +569,7 @@ file_prefs_ok_callback (GtkWidget *widget,
levels_of_undo = old_levels_of_undo;
return;
}
if (marching_speed <= 50)
if (marching_speed < 50)
{
message_box("Error: Marching speed must be 50 or greater.",
NULL, NULL);

View File

@ -569,7 +569,7 @@ file_prefs_ok_callback (GtkWidget *widget,
levels_of_undo = old_levels_of_undo;
return;
}
if (marching_speed <= 50)
if (marching_speed < 50)
{
message_box("Error: Marching speed must be 50 or greater.",
NULL, NULL);

View File

@ -569,7 +569,7 @@ file_prefs_ok_callback (GtkWidget *widget,
levels_of_undo = old_levels_of_undo;
return;
}
if (marching_speed <= 50)
if (marching_speed < 50)
{
message_box("Error: Marching speed must be 50 or greater.",
NULL, NULL);

View File

@ -569,7 +569,7 @@ file_prefs_ok_callback (GtkWidget *widget,
levels_of_undo = old_levels_of_undo;
return;
}
if (marching_speed <= 50)
if (marching_speed < 50)
{
message_box("Error: Marching speed must be 50 or greater.",
NULL, NULL);