mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
restored USE_NETWORK checks (nw)
This commit is contained in:
parent
dd257bfb06
commit
0de7c60ca2
@ -406,7 +406,7 @@ void osd_interface::init_subsystems()
|
||||
machine().add_notifier(MACHINE_NOTIFY_RESUME, machine_notify_delegate(FUNC(osd_interface::input_resume), this));
|
||||
|
||||
output_init();
|
||||
#ifndef DONT_USE_NETWORK
|
||||
#ifdef USE_NETWORK
|
||||
network_init();
|
||||
#endif
|
||||
midi_init();
|
||||
@ -489,7 +489,7 @@ void osd_interface::exit_subsystems()
|
||||
sound_exit();
|
||||
input_exit();
|
||||
output_exit();
|
||||
#ifndef DONT_USE_NETWORK
|
||||
#ifdef USE_NETWORK
|
||||
network_exit();
|
||||
#endif
|
||||
midi_exit();
|
||||
|
@ -205,7 +205,7 @@ public:
|
||||
virtual void input_pause();
|
||||
virtual void input_resume();
|
||||
virtual bool output_init();
|
||||
#ifndef DONT_USE_NETWORK
|
||||
#ifdef USE_NETWORK
|
||||
virtual bool network_init();
|
||||
#endif
|
||||
|
||||
@ -213,7 +213,7 @@ public:
|
||||
virtual void window_exit();
|
||||
virtual void input_exit();
|
||||
virtual void output_exit();
|
||||
#ifndef DONT_USE_NETWORK
|
||||
#ifdef USE_NETWORK
|
||||
virtual void network_exit();
|
||||
#endif
|
||||
|
||||
|
@ -266,7 +266,7 @@ public:
|
||||
virtual void input_pause();
|
||||
virtual void input_resume();
|
||||
virtual bool output_init();
|
||||
#ifndef DONT_USE_NETWORK
|
||||
#ifdef USE_NETWORK
|
||||
virtual bool network_init();
|
||||
#endif
|
||||
|
||||
@ -274,7 +274,7 @@ public:
|
||||
virtual void window_exit();
|
||||
virtual void input_exit();
|
||||
virtual void output_exit();
|
||||
#ifndef DONT_USE_NETWORK
|
||||
#ifdef USE_NETWORK
|
||||
virtual void network_exit();
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user