fixed atari vector example ?

This commit is contained in:
Steven Hugg 2020-07-11 20:21:31 -05:00
parent 9b7df7938a
commit 7393d8276f
2 changed files with 2 additions and 2 deletions

View File

@ -187,11 +187,11 @@ TODO:
- need Edge 79+
- no import in workers
- copy to gen/ directory (allowJs is weird)
- can we debug first frame via replay?
- ca65 line numbers are not aligned with source code
- segments not read properly
- Debug Browser
- more stuff like 7800 display lists
- don't include start/end line on platforms w/o raster timing
WEB WORKER FORMAT

View File

@ -51,7 +51,7 @@ sbyte icos(byte x) {
}
void mat_rotate(Matrix* m, byte axis, byte angle) {
sbyte sin = isin(angle);
sbyte sin = -isin(angle);
sbyte cos = icos(angle);
mat_identity(m);
switch (axis) {