# HG changeset patch # User rubidium # Date 1208209753 0 # Node ID 074f8aa0326870e94d5a59b6a69bed754e95f136 # Parent 5f8bba5dd224acda74ebd6a7a733fe03ccb986f5 (svn r12713) -Fix: misleading comment. Patch by Yexo. diff -r 5f8bba5dd224 -r 074f8aa03268 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]++; } }