(svn r12713) -Fix: misleading comment. Patch by Yexo.
authorrubidium
Mon, 14 Apr 2008 21:49:13 +0000
changeset 10182 074f8aa03268
parent 10180 5f8bba5dd224
child 10183 bb64c0c1947c
(svn r12713) -Fix: misleading comment. Patch by Yexo.
src/group_cmd.cpp
--- a/src/group_cmd.cpp	Mon Apr 14 20:48:17 2008 +0000
+++ b/src/group_cmd.cpp	Mon Apr 14 21:49:13 2008 +0000
@@ -39,7 +39,7 @@
 		/* Decrease the num engines of EngineID i of the old group if it's not the default one */
 		if (!IsDefaultGroupID(old_g) && IsValidGroupID(old_g)) GetGroup(old_g)->num_engines[i]--;
 
-		/* Increase the num engines of EngineID i of the new group if it's not the new one */
+		/* Increase the num engines of EngineID i of the new group if it's not the default one */
 		if (!IsDefaultGroupID(new_g) && IsValidGroupID(new_g)) GetGroup(new_g)->num_engines[i]++;
 	}
 }