summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine
diff options
context:
space:
mode:
author Wilbert Pol <wilbertpol@users.noreply.github.com>2015-07-17 21:10:47 +0200
committer Wilbert Pol <wilbertpol@users.noreply.github.com>2015-07-17 21:10:47 +0200
commitedc09b4f4875bc703b95cce58d544aadf55f01b8 (patch)
treecb1667af6f26315208a1f5aad158484864bd17d4 /src/mess/machine
parent4b9d68194f6e183257a6e95141322549689a3fad (diff)
v9938.c: Removed set_resolution() method, simplifying the code a bit. All drivers were defaulting to the 'HIGH' setting anyway. This also puts the drivers back in charge of setting the screen parameters. (nw)
Diffstat (limited to 'src/mess/machine')
-rw-r--r--src/mess/machine/msx.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mess/machine/msx.c b/src/mess/machine/msx.c
index b5c9589f102..75488dad92a 100644
--- a/src/mess/machine/msx.c
+++ b/src/mess/machine/msx.c
@@ -214,13 +214,11 @@ void msx_state::post_load()
TIMER_DEVICE_CALLBACK_MEMBER(msx_state::msx2_interrupt)
{
- m_v9938->set_resolution(m_io_dsw->read() & 0x03);
m_v9938->interrupt();
}
TIMER_DEVICE_CALLBACK_MEMBER(msx_state::msx2p_interrupt)
{
- m_v9958->set_resolution(m_io_dsw->read() & 0x03);
m_v9958->interrupt();
}