HAVE_WIN32 -> WINDOWS. HAVE_LINUXKERNEL -> LINUX. If some features originating in Linux work on other systems, then define them specifically (eg. HAVE_LINUX_JOYSTICKS).

This commit is contained in:
Glenn Maynard
2005-10-24 07:22:28 +00:00
parent 45ec442600
commit 539ec6aa5c
8 changed files with 12 additions and 12 deletions
@@ -4,9 +4,9 @@
#include "arch/arch_platform.h"
/* MemoryCardDriver selector. */
#if defined(HAVE_LINUXKERNEL)
#if defined(LINUX)
#include "MemoryCardDriverThreaded_Linux.h"
#elif defined(HAVE_WIN32)
#elif defined(WINDOWS)
#include "MemoryCardDriverThreaded_Windows.h"
#endif