X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fcdintf.cpp;h=ded601cb5df421e08fd037ccd509a803ccc7a251;hb=7644e8de75e32cd1f96e7ffd8933e02ebcf26e8b;hp=4f8924f38bb46d179bc5e0bfc3d957df7cff7413;hpb=53d1b77295cdb028ef192cb6e5cd4cf60b3d6813;p=virtualjaguar diff --git a/src/cdintf.cpp b/src/cdintf.cpp index 4f8924f..ded601c 100644 --- a/src/cdintf.cpp +++ b/src/cdintf.cpp @@ -9,33 +9,20 @@ #include "cdintf.h" // Every OS has to implement these -/*#ifdef __GCCWIN32__ -#include "cdintf_win32.cpp" -#endif - -#ifdef __GCCUNIX__ -#ifdef _OSX_ - -#include "cdintf_osx.cpp" - -#else -#include "cdintf_linux.cpp" - -#endif -#endif//*/ +// OS dependent implementations #if defined(__GCCWIN32__) #include "cdintf_win32.cpp" #elif defined(__GCCUNIX__) -#if defined(_OSX_) + #if defined(_OSX_) #include "cdintf_osx.cpp" -#else + #else #include "cdintf_linux.cpp" -#endif + #endif #endif