mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-07 15:40:18 +00:00
Add fifoWait property of Event Object to SaveStates.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5998 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
8223dcd32c
commit
75bd5ed645
@ -178,6 +178,7 @@ void DoState(PointerWrap &p)
|
||||
p.Do(ev->time);
|
||||
p.Do(ev->type);
|
||||
p.Do(ev->userdata);
|
||||
p.Do(ev->fifoWait);
|
||||
ev->next = 0;
|
||||
prev = ev;
|
||||
ev = ev->next;
|
||||
@ -195,6 +196,7 @@ void DoState(PointerWrap &p)
|
||||
p.Do(ev->time);
|
||||
p.Do(ev->type);
|
||||
p.Do(ev->userdata);
|
||||
p.Do(ev->fifoWait);
|
||||
ev = ev->next;
|
||||
}
|
||||
more_events = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user