summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/i8244.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/i8244.cpp')
-rw-r--r--src/devices/video/i8244.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/devices/video/i8244.cpp b/src/devices/video/i8244.cpp
index 639174a84b8..a2d142b0410 100644
--- a/src/devices/video/i8244.cpp
+++ b/src/devices/video/i8244.cpp
@@ -130,6 +130,22 @@ i8245_device::i8245_device(const machine_config &mconfig, const char *tag, devic
//-------------------------------------------------
+// device_config_complete - perform any
+// operations now that the configuration is
+// complete
+//-------------------------------------------------
+
+void i8244_device::device_config_complete()
+{
+ if (!has_screen())
+ return;
+
+ if (!screen().refresh_attoseconds())
+ screen().set_raw(clock(), LINE_CLOCKS, START_ACTIVE_SCAN, END_ACTIVE_SCAN, m_screen_lines, START_Y, START_Y + SCREEN_HEIGHT);
+}
+
+
+//-------------------------------------------------
// device_start - device-specific startup
//-------------------------------------------------
* Maintenance: Vas Crabb2020-03-041-0/+1 * Add bgfx artwork path for Emscripten build (nw) algestam2019-12-031-0/+1 * Build system maintenance: Vas Crabb2019-10-041-4/+4 * (nw) Clean up the mess on master Vas Crabb2019-03-261-0/+8 * Revert "conflict resolution (nw)" andreasnaive2019-03-251-8/+0 * enable sub-second snapshot timers (nw) (#4493) Peter Ferrie2019-02-041-0/+7 * r4000: experimental mips3 implementation (nw) Patrick Mackinlay2019-02-011-0/+1 * Fix errors with single-driver build of vsnes.cpp [Justin Kerk] Justin Kerk2018-12-301-2/+2 * Don't error on undefined GL symbols for the WebAssembly target (#4187) Justin Kerk2018-10-231-0/+1 * Better Emscripten parameter handling, & update docs (nw) Justin Kerk2018-07-211-4/+1 * Update WebAssembly parameters for current Emscripten (nw) Justin Kerk2018-07-151-1/+4 * Fixed issues with CHD loading under Emscripten. [Justin Kerk]