removed some unused macros from src/emu/drivlgcy.h (nw)

This commit is contained in:
Oliver Stöneberg 2013-08-02 17:50:21 +00:00
parent 5760ae58cc
commit d088c182b0

View File

@ -64,18 +64,9 @@
#define MCFG_VIDEO_START(_func) \
driver_device::static_set_callback(*owner, driver_device::CB_VIDEO_START, VIDEO_START_NAME(_func));
#define MCFG_VIDEO_RESET(_func) \
driver_device::static_set_callback(*owner, driver_device::CB_VIDEO_RESET, VIDEO_RESET_NAME(_func));
#define MACHINE_START_CALL(name) MACHINE_START_NAME(name)(machine)
#define MACHINE_RESET_CALL(name) MACHINE_RESET_NAME(name)(machine)
#define PALETTE_INIT_CALL(name) PALETTE_INIT_NAME(name)(machine)
#define VIDEO_START_CALL(name) VIDEO_START_NAME(name)(machine)
#define VIDEO_RESET_CALL(name) VIDEO_RESET_NAME(name)(machine)
#endif /* __DRIVLGCY_H__ */