Permalink
Browse files

GBA BIOS: Use exp2f instead of powf

  • Loading branch information...
endrift committed Jul 3, 2018
1 parent e11e5ef commit 71f39ba1b67bd99a59e2dc5878da6356357e4f98
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/gba/bios.c
View
@@ -251,7 +251,7 @@ static void _MidiKey2Freq(struct GBA* gba) {
uint32_t key = cpu->memory.load32(cpu, cpu->gprs[0] + 4, 0);
gba->memory.activeRegion = oldRegion;
- cpu->gprs[0] = key / powf(2, (180.f - cpu->gprs[1] - cpu->gprs[2] / 256.f) / 12.f);
+ cpu->gprs[0] = key / exp2f((180.f - cpu->gprs[1] - cpu->gprs[2] / 256.f) / 12.f);
}
static void _Div(struct GBA* gba, int32_t num, int32_t denom) {

0 comments on commit 71f39ba

Please sign in to comment.