From 97b67170277437131adf6ed4d60139c172529e4f Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Tue, 26 Mar 2019 11:13:37 +1100 Subject: (nw) Clean up the mess on master MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This effectively reverts b380514764cf857469bae61c11143a19f79a74c5 and c24473ddff715ecec2e258a6eb38960cf8c8e98e, restoring the state at 598cd5227223c3b04ca31f0dbc1981256d9ea3ff. Before pushing, please check that what you're about to push is sane. Check your local commit log and ensure there isn't anything out-of-place before pushing to mainline. When things like this happen, it wastes everyone's time. I really don't need this in a week when real work™ is busting my balls and I'm behind where I want to be with preparing for MAME release. --- src/devices/video/saa5050.h | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'src/devices/video/saa5050.h') diff --git a/src/devices/video/saa5050.h b/src/devices/video/saa5050.h index 6e1aa5cec6a..a9bb680f347 100644 --- a/src/devices/video/saa5050.h +++ b/src/devices/video/saa5050.h @@ -29,21 +29,6 @@ #pragma once - - -//************************************************************************** -// INTERFACE CONFIGURATION MACROS -//************************************************************************** - -#define MCFG_SAA5050_D_CALLBACK(_read) \ - downcast(*device).set_d_rd_callback(DEVCB_##_read); - - -#define MCFG_SAA5050_SCREEN_SIZE(_cols, _rows, _size) \ - downcast(*device).set_screen_size(_cols, _rows, _size); - - - //************************************************************************** // TYPE DEFINITIONS //************************************************************************** @@ -58,7 +43,6 @@ public: void set_screen_size(int cols, int rows, int size) { m_cols = cols; m_rows = rows; m_size = size; } - template devcb_base &set_d_rd_callback(Object &&cb) { return m_read_d.set_callback(std::forward(cb)); } auto d_cb() { return m_read_d.bind(); } // optional information overrides -- cgit v1.2.3