Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Re-ordered platforms based on frequency
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Feb 3, 2011
1 parent 5f52a10 commit 7413650
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions include/SDL_config.h.default
Expand Up @@ -32,16 +32,16 @@
*/

/* Add any platform that doesn't build using the configure system. */
#if defined(__NINTENDODS__)
#include "SDL_config_nintendods.h"
#elif defined(__ANDROID__)
#include "SDL_config_android.h"
#elif defined(__IPHONEOS__)
#include "SDL_config_iphoneos.h"
#if defined(__WIN32__)
#include "SDL_config_windows.h"
#elif defined(__MACOSX__)
#include "SDL_config_macosx.h"
#elif defined(__WIN32__)
#include "SDL_config_windows.h"
#elif defined(__IPHONEOS__)
#include "SDL_config_iphoneos.h"
#elif defined(__ANDROID__)
#include "SDL_config_android.h"
#elif defined(__NINTENDODS__)
#include "SDL_config_nintendods.h"
#else
#include "SDL_config_minimal.h"
#endif /* platform config */
Expand Down

0 comments on commit 7413650

Please sign in to comment.