Update zapper.c

After testing trigger logic invertion option in VS roms, realized that ZD[w].bogo has to be inverted to work propperly
This commit is contained in:
DigiDwrf 2022-09-01 17:44:22 -05:00 committed by GitHub
parent fe05e00b52
commit ca7c563de7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -119,7 +119,7 @@ static uint8 FP_FASTAPASS(1) ReadZapperVS(int w) {
if (ZD[w].zap_readbit == 4) ret = 1;
if (ZD[w].zap_readbit == 7) {
if (ZD[w].bogo)
if (!ZD[w].bogo)
ret |= 0x1;
}