summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Oliver Stöneberg <oliverst@online.de>2014-10-22 15:54:48 +0200
committer Oliver Stöneberg <oliverst@online.de>2014-10-22 15:54:48 +0200
commit0de7c60ca23bb24449371260e83c0140451d5666 (patch)
treebb37da1303a5dd7d1550aa553a56f0a443b6a97e
parentdd257bfb065ce54d12daa0ed07a1eaed92f1a32a (diff)
restored USE_NETWORK checks (nw)
-rw-r--r--src/osd/osdepend.c4
-rw-r--r--src/osd/sdl/osdsdl.h4
-rw-r--r--src/osd/windows/winmain.h4
3 files changed, 6 insertions, 6 deletions
diff --git a/src/osd/osdepend.c b/src/osd/osdepend.c
index 30360e5c864..73563f0eb01 100644
--- a/src/osd/osdepend.c
+++ b/src/osd/osdepend.c
@@ -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();
diff --git a/src/osd/sdl/osdsdl.h b/src/osd/sdl/osdsdl.h
index 1fa19b83b68..5e039285369 100644
--- a/src/osd/sdl/osdsdl.h
+++ b/src/osd/sdl/osdsdl.h
@@ -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
diff --git a/src/osd/windows/winmain.h b/src/osd/windows/winmain.h
index 85d7d4b023a..34748113fe9 100644
--- a/src/osd/windows/winmain.h
+++ b/src/osd/windows/winmain.h
@@ -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