Commit 41871615 authored by Sam Lantinga's avatar Sam Lantinga

Allow windows to be created on non-primary displays.

parent 018af55e
...@@ -150,6 +150,10 @@ CommonArg(CommonState * state, int index) ...@@ -150,6 +150,10 @@ CommonArg(CommonState * state, int index)
return -1; return -1;
} }
state->display = SDL_atoi(argv[index]); state->display = SDL_atoi(argv[index]);
if (SDL_WINDOWPOS_ISUNDEFINED(state->window_x)) {
state->window_x = SDL_WINDOWPOS_UNDEFINED_DISPLAY(state->display);
state->window_y = SDL_WINDOWPOS_UNDEFINED_DISPLAY(state->display);
}
return 2; return 2;
} }
if (SDL_strcasecmp(argv[index], "--fullscreen") == 0) { if (SDL_strcasecmp(argv[index], "--fullscreen") == 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment