summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/thomson.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/thomson.cpp')
-rw-r--r--src/mame/video/thomson.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/thomson.cpp b/src/mame/video/thomson.cpp
index 8dac9d2f8d8..697c4744a20 100644
--- a/src/mame/video/thomson.cpp
+++ b/src/mame/video/thomson.cpp
@@ -890,7 +890,7 @@ void thomson_state::thom_floppy_active( int write )
/* update icon */
fnew = FLOP_STATE;
if ( fold != fnew )
- output().set_value( "floppy", fnew );
+ m_floppy = fnew;
}
@@ -1041,7 +1041,7 @@ WRITE_LINE_MEMBER(thomson_state::thom_vblank)
m_thom_floppy_rcount--;
fnew = FLOP_STATE;
if ( fnew != fold )
- output().set_value( "floppy", fnew );
+ m_floppy = fnew;
/* prepare state for next frame */
for ( i = 0; i <= THOM_TOTAL_HEIGHT; i++ )
@@ -1160,7 +1160,7 @@ VIDEO_START_MEMBER( thomson_state, thom )
m_thom_floppy_wcount = 0;
save_item(NAME(m_thom_floppy_wcount));
save_item(NAME(m_thom_floppy_rcount));
- output().set_value( "floppy", 0 );
+ m_floppy.resolve();
m_thom_video_timer = machine().scheduler().timer_alloc(timer_expired_delegate());