Fix ASM-inaccuracy

I have no idea how that snuck through.
This commit is contained in:
Clownacy 2019-12-03 19:27:26 +00:00
parent 16b9f1f0a4
commit 0af9bcc89b

View file

@ -15,10 +15,8 @@ void MakeWaveTables(void)
// Sine wave
for (i = 0; i < 0x100; ++i)
{
int unknown;
gWaveModelTable[0][i] = (signed char)(sin((i * 6.283184) / 256.0) * 64.0);
unknown = gWaveModelTable[0][i]; // I have no idea what this line was meant to do
a = gWaveModelTable[0][i]; // I have no idea what this line was meant to do
}
// Triangle wave