| Previous | 199869 Revisions | Next |
| r32873 Wednesday 22nd October, 2014 at 13:54:48 UTC by Oliver Stöneberg |
|---|
| restored USE_NETWORK checks (nw) |
| [src/emu/machine] | diablo_hd.h |
| [src/osd] | osdepend.c |
| [src/osd/sdl] | osdsdl.h |
| [src/osd/windows] | winmain.h |
| r241384 | r241385 | |
|---|---|---|
| 175 | 175 | }; |
| 176 | 176 | |
| 177 | 177 | #define MCFG_DIABLO_DRIVES_ADD() \ |
| 178 | MCFG_DEVICE_ADD(DIABLO_HD_0, DIABLO_HD, 3333333) \ | |
| 179 | MCFG_DEVICE_ADD(DIABLO_HD_1, DIABLO_HD, 3333333) | |
| 178 | MCFG_DEVICE_ADD(DIABLO_HD_0, DIABLO_HD, ATTOSECONDS_TO_HZ(attotime::from_nsec(300).as_double())) \ | |
| 179 | MCFG_DEVICE_ADD(DIABLO_HD_1, DIABLO_HD, ATTOSECONDS_TO_HZ(attotime::from_nsec(300).as_double())) | |
| 180 | 180 | #endif // !defined(_DIABLO_HD_DEVICE_) |
| r241384 | r241385 | |
|---|---|---|
| 406 | 406 | machine().add_notifier(MACHINE_NOTIFY_RESUME, machine_notify_delegate(FUNC(osd_interface::input_resume), this)); |
| 407 | 407 | |
| 408 | 408 | output_init(); |
| 409 | #if | |
| 409 | #ifdef USE_NETWORK | |
| 410 | 410 | network_init(); |
| 411 | 411 | #endif |
| 412 | 412 | midi_init(); |
| r241384 | r241385 | |
| 489 | 489 | sound_exit(); |
| 490 | 490 | input_exit(); |
| 491 | 491 | output_exit(); |
| 492 | #if | |
| 492 | #ifdef USE_NETWORK | |
| 493 | 493 | network_exit(); |
| 494 | 494 | #endif |
| 495 | 495 | midi_exit(); |
| r241384 | r241385 | |
|---|---|---|
| 205 | 205 | virtual void input_pause(); |
| 206 | 206 | virtual void input_resume(); |
| 207 | 207 | virtual bool output_init(); |
| 208 | #if | |
| 208 | #ifdef USE_NETWORK | |
| 209 | 209 | virtual bool network_init(); |
| 210 | 210 | #endif |
| 211 | 211 | |
| r241384 | r241385 | |
| 213 | 213 | virtual void window_exit(); |
| 214 | 214 | virtual void input_exit(); |
| 215 | 215 | virtual void output_exit(); |
| 216 | #if | |
| 216 | #ifdef USE_NETWORK | |
| 217 | 217 | virtual void network_exit(); |
| 218 | 218 | #endif |
| 219 | 219 |
| r241384 | r241385 | |
|---|---|---|
| 266 | 266 | virtual void input_pause(); |
| 267 | 267 | virtual void input_resume(); |
| 268 | 268 | virtual bool output_init(); |
| 269 | #if | |
| 269 | #ifdef USE_NETWORK | |
| 270 | 270 | virtual bool network_init(); |
| 271 | 271 | #endif |
| 272 | 272 | |
| r241384 | r241385 | |
| 274 | 274 | virtual void window_exit(); |
| 275 | 275 | virtual void input_exit(); |
| 276 | 276 | virtual void output_exit(); |
| 277 | #if | |
| 277 | #ifdef USE_NETWORK | |
| 278 | 278 | virtual void network_exit(); |
| 279 | 279 | #endif |
| 280 | 280 |
| https://github.com/mamedev/mame/commit/0de7c60ca23bb24449371260e83c0140451d5666 |
| Previous | 199869 Revisions | Next |