Start with more sensible values: 2x video size.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
This commit is contained in:
parent
4fca44ed6f
commit
ea4891f1f6
1 changed files with 2 additions and 2 deletions
|
@ -80,8 +80,8 @@ void run_sdl(int argc, const char * argv [])
|
|||
const int sw = video.GetFrameBufferBorderlessWidth();
|
||||
const int sh = video.GetFrameBufferBorderlessHeight();
|
||||
|
||||
options.geometry.width = sw;
|
||||
options.geometry.height = sh;
|
||||
options.geometry.width = sw * 2;
|
||||
options.geometry.height = sh * 2;
|
||||
options.geometry.x = SDL_WINDOWPOS_UNDEFINED;
|
||||
options.geometry.y = SDL_WINDOWPOS_UNDEFINED;
|
||||
options.memclear = g_nMemoryClearType;
|
||||
|
|
Loading…
Add table
Reference in a new issue