Get rid of lowercase hex (outside libultra)

This commit is contained in:
Dragorn421
2021-09-21 10:46:14 +02:00
parent 52a91a3117
commit 5fd93ae79b
15 changed files with 100 additions and 100 deletions
+1 -1
View File
@@ -86,7 +86,7 @@ f32 Audio_GetPortamentoFreqScale(Portamento* p) {
f32 result;
p->cur += p->speed;
loResCur = (p->cur >> 8) & 0xff;
loResCur = (p->cur >> 8) & 0xFF;
if (loResCur >= 127) {
loResCur = 127;