foo
authorJohn Tsiombikas <nuclear@member.fsf.org>
Mon, 19 Apr 2021 15:17:17 +0000 (18:17 +0300)
committerJohn Tsiombikas <nuclear@member.fsf.org>
Mon, 19 Apr 2021 15:17:17 +0000 (18:17 +0300)
src/gamescr.c

index 51df533..39ed733 100644 (file)
@@ -156,8 +156,8 @@ static void vblank(void)
                gate_speed = 0;
        }
 
-       if(bnstate & BN_A) rot--;
-       if(bnstate & BN_B) rot++;
+       if(bnstate & BN_A) rot -= 2;
+       if(bnstate & BN_B) rot += 2;
 
        spr_oam(oam, 0, 512 + 256, x - 64, y - 64, SPR_256COL | SPR_SZ64 | SPR_DBLSZ |
                        SPR_ROTSCL | SPR_ROTSCL_SEL(0));