21.03.2008, 06:40
thanks for this FS (wow i'm so late :P)
to avoid these 3 warnings, you have to use a temporary variable:
but it doesn't matter as it's only warnings ^^
to avoid these 3 warnings, you have to use a temporary variable:
Code:
case 4: {
tmpAVLock = !gAVLock[0];
gAVLock[0] = tmpAVLock;
}
case 5: {
tmpAVLock = !gAVLock[1];
gAVLock[1] = tmpAVLock;
}
case 6: {
tmpAVLock = !gAVLock[2];
gAVLock[2] = tmpAVLock;
}

