diff options
author | 2014-04-02 11:59:10 +0000 | |
---|---|---|
committer | 2014-04-02 11:59:10 +0000 | |
commit | b1c2c8daeeca433652f2a5055c9aeef27406c520 (patch) | |
tree | cd6a0c46bd8a428628061e5c7c2483735b5c6e71 /src/mess/machine/svi318.c | |
parent | 06238c1cdb21b8c0d1ea7a8fbcf967f6e297d8bc (diff) |
modernized access for legacy floppy, quite straight forward thing (nw)
Diffstat (limited to 'src/mess/machine/svi318.c')
-rw-r--r-- | src/mess/machine/svi318.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/svi318.c b/src/mess/machine/svi318.c index a4adfbab7c4..d9006355ab7 100644 --- a/src/mess/machine/svi318.c +++ b/src/mess/machine/svi318.c @@ -564,7 +564,7 @@ MACHINE_RESET_MEMBER(svi318_state,svi318) for(drive=0;drive<2;drive++) { - floppy_install_load_proc(floppy_get_device(machine(), drive), svi318_load_proc); + floppy_get_device(machine(), drive)->floppy_install_load_proc(svi318_load_proc); } } |