Fix ASM-inaccuracy
I have no idea how that snuck through.
This commit is contained in:
parent
16b9f1f0a4
commit
0af9bcc89b
1 changed files with 1 additions and 3 deletions
|
@ -15,10 +15,8 @@ void MakeWaveTables(void)
|
||||||
// Sine wave
|
// Sine wave
|
||||||
for (i = 0; i < 0x100; ++i)
|
for (i = 0; i < 0x100; ++i)
|
||||||
{
|
{
|
||||||
int unknown;
|
|
||||||
|
|
||||||
gWaveModelTable[0][i] = (signed char)(sin((i * 6.283184) / 256.0) * 64.0);
|
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
|
// Triangle wave
|
||||||
|
|
Loading…
Add table
Reference in a new issue