diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-02-02 22:45:42 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-02-02 22:45:42 -0500 |
commit | 45373ec601e5af5bc2be7a72b8556e4311efdc05 (patch) | |
tree | 5e8e92a4383e1f9c89e5f2e4071a838829bf53e3 /engine/routines | |
parent | f258ff8a417ba44a3cc0679c59f1a278ea108ed2 (diff) |
sine_wave macro parameterizes table size, not frequency ("amplitude" was an incorrect comment)
Diffstat (limited to 'engine/routines')
-rwxr-xr-x | engine/routines/sine.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/routines/sine.asm b/engine/routines/sine.asm index 5f56a10a8..8c5ec6347 100755 --- a/engine/routines/sine.asm +++ b/engine/routines/sine.asm @@ -45,4 +45,4 @@ _Sine:: ; 84d9 .sinewave ; 850b ; A $20-word table representing a sine wave. ; 90 degrees is index $10 at a base amplitude of $100. - sine_wave $100 + sine_wave 32 |