# HG changeset patch # User rubidium # Date 1208209753 0 # Node ID fd776400b6619c00053bfc9ef128bfaa4edee6c2 # Parent 46aa513211176b924615352364d0526fe44197b8 (svn r12713) -Fix: misleading comment. Patch by Yexo. diff --git a/src/group_cmd.cpp b/src/group_cmd.cpp --- a/src/group_cmd.cpp +++ b/src/group_cmd.cpp @@ -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]++; } }