diff options
author | 2013-04-19 14:47:35 +0000 | |
---|---|---|
committer | 2013-04-19 14:47:35 +0000 | |
commit | be5e1248c44af7616e0c5bbfc6d625622c285768 (patch) | |
tree | a3fdec8a735cbeb66f4c8c15905fda5f01502c9e /src/mess/machine/poly88.c | |
parent | 1cf6d1965d49a46e2f5930a652c0ce56194cb194 (diff) |
SNAPSHOT_LOAD and QUICKLOAD_LOAD made members, still need to cleanup (nw)
Diffstat (limited to 'src/mess/machine/poly88.c')
-rw-r--r-- | src/mess/machine/poly88.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/poly88.c b/src/mess/machine/poly88.c index ea7de3da342..40bea79a1f9 100644 --- a/src/mess/machine/poly88.c +++ b/src/mess/machine/poly88.c @@ -252,7 +252,7 @@ WRITE8_MEMBER(poly88_state::poly88_intr_w) m_maincpu->set_input_line(0, CLEAR_LINE); } -SNAPSHOT_LOAD( poly88 ) +SNAPSHOT_LOAD_MEMBER( poly88_state, poly88 ) { address_space &space = image.device().machine().device("maincpu")->memory().space(AS_PROGRAM); UINT8* data= auto_alloc_array(image.device().machine(), UINT8, snapshot_size); |