Removed Nintendo DS support since nobody has volunteered to maintain it for over a year.

This commit is contained in:
Sam Lantinga 2013-03-17 09:44:58 -07:00
parent 72befa7332
commit 3afbe992d5
53 changed files with 2 additions and 4350 deletions

View file

@ -44,11 +44,7 @@ SDLTest_CommonCreateState(char **argv, Uint32 flags)
/* Initialize some defaults */
state->argv = argv;
state->flags = flags;
#ifdef __NDS__
state->window_title = "";
#else
state->window_title = argv[0];
#endif
state->window_flags = 0;
state->window_x = SDL_WINDOWPOS_UNDEFINED;
state->window_y = SDL_WINDOWPOS_UNDEFINED;
@ -87,10 +83,6 @@ SDLTest_CommonArg(SDLTest_CommonState * state, int index)
{
char **argv = state->argv;
#ifdef __NDS__
return 0;
#endif
if (SDL_strcasecmp(argv[index], "--video") == 0) {
++index;
if (!argv[index]) {