1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-01 05:41:31 +00:00

added neslib2.lib

This commit is contained in:
Steven Hugg 2019-05-17 15:55:59 -04:00
parent f9f580248f
commit af26db3396
2 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ void update_nametable() {
char buf[32];
// divide x_scroll by 8
// to get nametable X position
byte x = ((x_scroll >> 3)+32) & 63;
byte x = (x_scroll/8 + 32) & 63;
if (x < 32)
addr = NTADR_A(x, 4);
else

Binary file not shown.