Trying to solve a bug in a plugin someone else made and wonder, does this one line of code set g_votes[0], g_votes[1] and g_votes[2] to zero? g_votes[0] = g_votes[1] = g_votes[2] = 0;
Or do you have to do it like: g_votes[0] = 0;
g_votes[1] = 0;
g_votes[2] = 0;