summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/video/poisk1.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/video/poisk1.c')
-rw-r--r--src/mess/video/poisk1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/video/poisk1.c b/src/mess/video/poisk1.c
index db32d66103a..6f367c6eb2a 100644
--- a/src/mess/video/poisk1.c
+++ b/src/mess/video/poisk1.c
@@ -116,9 +116,9 @@ WRITE8_MEMBER(p1_state::p1_ppi2_porta_w)
// HIRES -- XXX
if (BIT(data, 7) != BIT(m_video.color_select_68, 7)) {
if (BIT(data, 7))
- machine().primary_screen->set_visible_area(0, 640-1, 0, 200-1);
+ machine().first_screen()->set_visible_area(0, 640-1, 0, 200-1);
else
- machine().primary_screen->set_visible_area(0, 320-1, 0, 200-1);
+ machine().first_screen()->set_visible_area(0, 320-1, 0, 200-1);
}
m_video.color_select_68 = data;
set_palette_luts();