From d088c182b009399ab2ab1cac515f53f2a716f2c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Fri, 2 Aug 2013 17:50:21 +0000 Subject: [PATCH] removed some unused macros from src/emu/drivlgcy.h (nw) --- src/emu/drivlgcy.h | 9 --------- 1 file changed, 9 deletions(-) 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__ */