diff options
Diffstat (limited to 'src/emu/crsshair.h')
-rw-r--r-- | src/emu/crsshair.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/crsshair.h b/src/emu/crsshair.h index 237a77ad5ee..af6cfa50440 100644 --- a/src/emu/crsshair.h +++ b/src/emu/crsshair.h @@ -19,8 +19,8 @@ CONSTANTS ***************************************************************************/ -#define CROSSHAIR_SCREEN_NONE ((const device_config *) 0) -#define CROSSHAIR_SCREEN_ALL ((const device_config *) ~0) +#define CROSSHAIR_SCREEN_NONE ((running_device *) 0) +#define CROSSHAIR_SCREEN_ALL ((running_device *) ~0) /* user settings for visibility mode */ #define CROSSHAIR_VISIBILITY_OFF 0 @@ -62,10 +62,10 @@ struct _crosshair_user_settings void crosshair_init(running_machine *machine); /* draws crosshair(s) in a given screen, if neccessary */ -void crosshair_render(const device_config *screen); +void crosshair_render(running_device *screen); /* sets the screen(s) for a given player's crosshair */ -void crosshair_set_screen(running_machine *machine, int player, const device_config *screen); +void crosshair_set_screen(running_machine *machine, int player, running_device *screen); /* return TRUE if any crosshairs are used */ int crosshair_get_usage(running_machine *machine); |