mirror of
https://github.com/JetSetIlly/Gopher2600.git
synced 2025-04-02 11:02:17 -04:00
fixed rewind for 'fastload' Supercharger tapes
snapshot implementation was incorrect for fastload
This commit is contained in:
parent
f157f7723b
commit
78a6880f51
1 changed files with 2 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue