fixed rewind for 'fastload' Supercharger tapes

snapshot implementation was incorrect for fastload
This commit is contained in:
JetSetIlly 2024-06-05 21:21:31 +01:00
parent f157f7723b
commit 78a6880f51

View file

@ -132,7 +132,8 @@ func newFastLoad(env *environment.Environment, cart *Supercharger, loader cartri
func (fl *FastLoad) snapshot() tape {
// this function doesn't copy anything. data array in each snapshot will
// point to the same data array
return fl
n := *fl
return &n
}
// load implements the tape interface.