diff options
| author | 2016-04-25 19:59:42 -0400 | |
|---|---|---|
| committer | 2016-04-25 19:59:42 -0400 | |
| commit | ec2669cacff2ec954ba351e09ba083c4e32b4ce4 (patch) | |
| tree | 7e9ec8a3e673ad0cf436357075807d3d0a0fbcc9 /src/emu/drivenum.h | |
| parent | 5a320aba4abe239b250a0917f82e70d9c8a905b9 (diff) | |
Machine management cleanups
- Boolean parameter to running_machine::run is no longer firstrun (which is now a member variable of mame_machine_manager) but quiet, which disables logging and audio recording without explicitly checking the system name.
- Sound recording is now turned on and off by explicit calls. The potential uses of this have not been explored.
- Dependencies reduced on drivenum.h, where the declaration for GAME_NAME(___empty) has been moved to.
Diffstat (limited to 'src/emu/drivenum.h')
| -rw-r--r-- | src/emu/drivenum.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/emu/drivenum.h b/src/emu/drivenum.h index faaf685304a..e4f646d77f7 100644 --- a/src/emu/drivenum.h +++ b/src/emu/drivenum.h @@ -15,6 +15,13 @@ //************************************************************************** +// GLOBAL VARIABLES +//************************************************************************** + +GAME_EXTERN(___empty); + + +//************************************************************************** // TYPE DEFINITIONS //************************************************************************** |
