diff options
author | Max Horn | 2009-02-15 21:27:42 +0000 |
---|---|---|
committer | Max Horn | 2009-02-15 21:27:42 +0000 |
commit | e90eed4ff338f833067f28e0374d58ccfdf6cbf1 (patch) | |
tree | b83cb7ece93b5b2697cae3ee39f11d7c460a8391 /engines/sci/sfx/pcm_device/pcm_devices.cpp | |
parent | 5417f6bacb73d5996b26229513c2ce01db27bf6a (diff) | |
download | scummvm-rg350-e90eed4ff338f833067f28e0374d58ccfdf6cbf1.tar.gz scummvm-rg350-e90eed4ff338f833067f28e0374d58ccfdf6cbf1.tar.bz2 scummvm-rg350-e90eed4ff338f833067f28e0374d58ccfdf6cbf1.zip |
SCI: Changed _WIN32 -> WIN32; _DREAMCAST -> __DC__; removed _DOS stuff
svn-id: r38305
Diffstat (limited to 'engines/sci/sfx/pcm_device/pcm_devices.cpp')
-rw-r--r-- | engines/sci/sfx/pcm_device/pcm_devices.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/sfx/pcm_device/pcm_devices.cpp b/engines/sci/sfx/pcm_device/pcm_devices.cpp index a29de8896f..09e20bb07b 100644 --- a/engines/sci/sfx/pcm_device/pcm_devices.cpp +++ b/engines/sci/sfx/pcm_device/pcm_devices.cpp @@ -30,7 +30,7 @@ extern sfx_pcm_device_t sfx_pcm_driver_sdl; # ifdef HAVE_ALSA extern sfx_pcm_device_t sfx_pcm_driver_alsa; # endif -# ifdef _DREAMCAST +# ifdef __DC__ extern sfx_pcm_device_t sfx_pcm_driver_dc; # endif #endif // SCUMMVM @@ -47,7 +47,7 @@ sfx_pcm_device_t *pcmout_drivers[] = { # ifdef HAVE_ALSA &sfx_pcm_driver_alsa, # endif -# ifdef _DREAMCAST +# ifdef __DC__ &sfx_pcm_driver_dc, # endif #endif // SCUMMVM |