this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Made Android always request a full screen window.

+9 -1
+9 -1
src/renderer_GL_common.inl
··· 899 899 900 900 if(window == NULL) 901 901 { 902 + int win_w, win_h; 903 + #ifdef __ANDROID__ 904 + win_w = win_h = 0; // Force Android to create full screen window 905 + #else 906 + win_w = w; 907 + win_h = h; 908 + #endif 909 + 902 910 // Set up window flags 903 911 SDL_flags |= SDL_WINDOW_OPENGL; 904 912 if(!(SDL_flags & SDL_WINDOW_HIDDEN)) ··· 907 915 renderer->SDL_init_flags = SDL_flags; 908 916 window = SDL_CreateWindow("", 909 917 SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 910 - w, h, 918 + win_w, win_h, 911 919 SDL_flags); 912 920 913 921 if(window == NULL)