improve inputs

This commit is contained in:
bQUARKz 2026-01-10 06:50:49 +00:00 committed by Nilton Constantino
parent 73826cd768
commit 029d0c25a2
No known key found for this signature in database

View File

@ -65,6 +65,6 @@ impl Machine {
fn demo_pos(&self) -> (i32, i32) {
let t = (self.frame_index % 280) as i32;
let z = (self.pad.a.hold_frames % 140) as i32;
(20 + t, 80 + z)
(20 + t, z)
}
}