You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(i @ 9..=11,3) => thread.ip.elements[i asusize],/* ip of the current thread (ip) */
I'm pretty sure these array indices should start at zero, i.e. (i @ 9..=11, 3) => thread.ip.elements[i as usize - 9] instead of (i @ 9..=11, 3) => thread.ip.elements[i as usize]
The text was updated successfully, but these errors were encountered:
rsfunge/src/interpreter/instruction/insts.rs
Line 521 in 9447979
I'm pretty sure these array indices should start at zero, i.e.
(i @ 9..=11, 3) => thread.ip.elements[i as usize - 9]
instead of(i @ 9..=11, 3) => thread.ip.elements[i as usize]
The text was updated successfully, but these errors were encountered: