summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/driver.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-02-03 20:56:53 -0500
committer AJR <ajrhacker@users.noreply.github.com>2018-02-03 21:02:18 -0500
commit3f135a40b7bce9263bc32d1af6dc9242386a7bc1 (patch)
treecb86120fd22993a27ffe9fd69bd27d53925a5dc5 /src/emu/driver.cpp
parentfb260c42597361ad1a0dce4b959d8767f1e027b5 (diff)
Flip screen API cleanup (nw)
- Make the global flipping functions of driver_device protected so as not to be accessible from within subdevices - Eliminate the flip_screen_set_no_update kludge
Diffstat (limited to 'src/emu/driver.cpp')
-rw-r--r--src/emu/driver.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/emu/driver.cpp b/src/emu/driver.cpp
index 37c63d113fb..6481b2e98a1 100644
--- a/src/emu/driver.cpp
+++ b/src/emu/driver.cpp
@@ -335,23 +335,6 @@ void driver_device::flip_screen_set(u32 on)
//-------------------------------------------------
-// flip_screen_set_no_update - set global flip
-// do not call updateflip.
-//-------------------------------------------------
-
-void driver_device::flip_screen_set_no_update(u32 on)
-{
- // flip_screen_y is not updated on purpose
- // this function is for drivers which
- // were writing to flip_screen_x to
- // bypass updateflip
- if (on)
- on = ~0;
- m_flip_screen_x = on;
-}
-
-
-//-------------------------------------------------
// flip_screen_x_set - set global horizontal flip
//-------------------------------------------------