diff --git a/alienblaster/project/jni/application/src/global.h b/alienblaster/project/jni/application/src/global.h index 9d0a8f0ea..ce4d62078 100644 --- a/alienblaster/project/jni/application/src/global.h +++ b/alienblaster/project/jni/application/src/global.h @@ -56,7 +56,7 @@ int getRandValue( const int *choicesWeights, int nrChoices, int sumWeights=0 ); void initAllSurfaces(); // screen options -const int SCREEN_WIDTH = 320; +const int SCREEN_WIDTH = 640; const int SCREEN_HEIGHT = 480; const int BIT_DEPTH = 16; diff --git a/alienblaster/project/jni/sdl/src/video/android/SDL_androidvideo.c b/alienblaster/project/jni/sdl/src/video/android/SDL_androidvideo.c index 2980bce35..c24231aad 100644 --- a/alienblaster/project/jni/sdl/src/video/android/SDL_androidvideo.c +++ b/alienblaster/project/jni/sdl/src/video/android/SDL_androidvideo.c @@ -209,9 +209,9 @@ int ANDROID_VideoInit(_THIS, SDL_PixelFormat *vformat) } /* Modes sorted largest to smallest */ SDL_modelist[0]->w = sWindowWidth; SDL_modelist[0]->h = sWindowHeight; - SDL_modelist[1]->w = 320; SDL_modelist[1]->h = 240; // Always available on any screen and any orientation - SDL_modelist[2]->w = 320; SDL_modelist[2]->h = 200; // Always available on any screen and any orientation - SDL_modelist[3]->w = 640; SDL_modelist[3]->h = 480; // Requires accelerometer to scroll large virtual display surface + SDL_modelist[1]->w = 640; SDL_modelist[1]->h = 480; // Will likely be shrinked + SDL_modelist[2]->w = 320; SDL_modelist[2]->h = 240; // Always available on any screen and any orientation + SDL_modelist[3]->w = 320; SDL_modelist[3]->h = 200; // Always available on any screen and any orientation SDL_modelist[4] = NULL; WaitForNativeRender = SDL_CreateMutex();