mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
Fix pmac6100 regression caused by detagging (nw)
This commit is contained in:
parent
3cb74a77c8
commit
b6e9eb1720
@ -242,7 +242,14 @@ VIDEO_RESET_MEMBER(mac_state,macrbv)
|
||||
visarea.min_x = 0;
|
||||
visarea.min_y = 0;
|
||||
view = 0;
|
||||
m_rbv_montype = m_montype->read_safe(2);
|
||||
if (m_montype)
|
||||
{
|
||||
m_rbv_montype = m_montype->read_safe(2);
|
||||
}
|
||||
else
|
||||
{
|
||||
m_rbv_montype = 2;
|
||||
}
|
||||
switch (m_rbv_montype)
|
||||
{
|
||||
case 1: // 15" portrait display
|
||||
|
Loading…
Reference in New Issue
Block a user