diff --git a/src/emu/drivlgcy.h b/src/emu/drivlgcy.h index 2cfe59f180a..5902911c9ae 100644 --- a/src/emu/drivlgcy.h +++ b/src/emu/drivlgcy.h @@ -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__ */