improve inputs

This commit is contained in:
bQUARKz 2026-01-10 06:48:44 +00:00
parent cdfb1188ee
commit e6133baedf
Signed by: bquarkz
SSH Key Fingerprint: SHA256:Z7dgqoglWwoK6j6u4QC87OveEq74WOhFN+gitsxtkf8

View File

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