Fix for network compile
This commit is contained in:
parent
3dcf8d65af
commit
3761dcbb7c
7712
src/mame/video/n64.c
7712
src/mame/video/n64.c
File diff suppressed because it is too large
Load Diff
@ -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();
|
||||
#ifdef USE_NETWORK
|
||||
#ifndef DONT_USE_NETWORK
|
||||
network_init();
|
||||
#endif
|
||||
midi_init();
|
||||
@ -489,7 +489,7 @@ void osd_interface::exit_subsystems()
|
||||
sound_exit();
|
||||
input_exit();
|
||||
output_exit();
|
||||
#ifdef USE_NETWORK
|
||||
#ifndef DONT_USE_NETWORK
|
||||
network_exit();
|
||||
#endif
|
||||
midi_exit();
|
||||
|
@ -205,7 +205,7 @@ public:
|
||||
virtual void input_pause();
|
||||
virtual void input_resume();
|
||||
virtual bool output_init();
|
||||
#ifdef USE_NETWORK
|
||||
#ifndef DONT_USE_NETWORK
|
||||
virtual bool network_init();
|
||||
#endif
|
||||
|
||||
@ -213,7 +213,7 @@ public:
|
||||
virtual void window_exit();
|
||||
virtual void input_exit();
|
||||
virtual void output_exit();
|
||||
#ifdef USE_NETWORK
|
||||
#ifndef DONT_USE_NETWORK
|
||||
virtual void network_exit();
|
||||
#endif
|
||||
|
||||
|
@ -266,7 +266,7 @@ public:
|
||||
virtual void input_pause();
|
||||
virtual void input_resume();
|
||||
virtual bool output_init();
|
||||
#ifdef USE_NETWORK
|
||||
#ifndef DONT_USE_NETWORK
|
||||
virtual bool network_init();
|
||||
#endif
|
||||
|
||||
@ -274,7 +274,7 @@ public:
|
||||
virtual void window_exit();
|
||||
virtual void input_exit();
|
||||
virtual void output_exit();
|
||||
#ifdef USE_NETWORK
|
||||
#ifndef DONT_USE_NETWORK
|
||||
virtual void network_exit();
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user