We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
adpcm is declared with size 6 so the last element is 5:
case 2: /* status 1 : + ADPCM status */ /* BUSY:x:PCMBUSY:ZERO:BRDY:EOS:FLAGB:FLAGA */ if(addr==0xff) ret = 0x00; /* ID code */ else ret = F2608->OPN.ST.status | (F2608->adpcm[6].flag ? 0x20 : 0); break;
Not a hard one to spot - the compiler even tells you about it every time you compile.
My guess is that element [5] is the one that's wanted?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
adpcm is declared with size 6 so the last element is 5:
Not a hard one to spot - the compiler even tells you about it every time you compile.
My guess is that element [5] is the one that's wanted?
The text was updated successfully, but these errors were encountered: