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

trunk/src/emu/machine/diablo_hd.h
r241384r241385
175175};
176176
177177#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()))
180180#endif  // !defined(_DIABLO_HD_DEVICE_)
trunk/src/osd/osdepend.c
r241384r241385
406406   machine().add_notifier(MACHINE_NOTIFY_RESUME, machine_notify_delegate(FUNC(osd_interface::input_resume), this));
407407
408408   output_init();
409#ifndef DONT_USE_NETWORK
409#ifdef USE_NETWORK
410410   network_init();
411411#endif
412412   midi_init();
r241384r241385
489489   sound_exit();
490490   input_exit();
491491   output_exit();
492   #ifndef DONT_USE_NETWORK
492   #ifdef USE_NETWORK
493493   network_exit();
494494   #endif
495495   midi_exit();
trunk/src/osd/sdl/osdsdl.h
r241384r241385
205205   virtual void input_pause();
206206   virtual void input_resume();
207207   virtual bool output_init();
208   #ifndef DONT_USE_NETWORK
208   #ifdef USE_NETWORK
209209   virtual bool network_init();
210210   #endif
211211
r241384r241385
213213   virtual void window_exit();
214214   virtual void input_exit();
215215   virtual void output_exit();
216   #ifndef DONT_USE_NETWORK
216   #ifdef USE_NETWORK
217217   virtual void network_exit();
218218   #endif
219219
trunk/src/osd/windows/winmain.h
r241384r241385
266266   virtual void input_pause();
267267   virtual void input_resume();
268268   virtual bool output_init();
269   #ifndef DONT_USE_NETWORK
269   #ifdef USE_NETWORK
270270   virtual bool network_init();
271271   #endif
272272
r241384r241385
274274   virtual void window_exit();
275275   virtual void input_exit();
276276   virtual void output_exit();
277   #ifndef DONT_USE_NETWORK
277   #ifdef USE_NETWORK
278278   virtual void network_exit();
279279   #endif
280280


Previous 199869 Revisions Next


© 1997-2024 The MAME Team