summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/screen.h
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2018-01-21 23:42:41 +0100
committer Olivier Galibert <galibert@pobox.com>2018-01-23 10:25:25 +0100
commit03ba80e0ef3e021f6ff89ef91ae5cdce4e24b994 (patch)
treef127b7f533d36df2484f82fcb05cef5f4c04f232 /src/emu/screen.h
parentf61a64ea29bf46bf2deb2e1fbace5b24f3d7b0aa (diff)
xtal.h is dead, long live to xtal.cpp [O. Galibert]
Diffstat (limited to 'src/emu/screen.h')
-rw-r--r--src/emu/screen.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/screen.h b/src/emu/screen.h
index c022c573316..2297a8514e2 100644
--- a/src/emu/screen.h
+++ b/src/emu/screen.h
@@ -189,6 +189,7 @@ public:
// inline configuration helpers
static void static_set_type(device_t &device, screen_type_enum type);
static void static_set_raw(device_t &device, u32 pixclock, u16 htotal, u16 hbend, u16 hbstart, u16 vtotal, u16 vbend, u16 vbstart);
+ static void static_set_raw(device_t &device, const XTAL &xtal, u16 htotal, u16 hbend, u16 hbstart, u16 vtotal, u16 vbend, u16 vbstart) { static_set_raw(device, xtal.value(), htotal, hbend, hbstart, vtotal, vbend, vbstart); }
static void static_set_refresh(device_t &device, attoseconds_t rate);
static void static_set_vblank_time(device_t &device, attoseconds_t time);
static void static_set_size(device_t &device, u16 width, u16 height);