video: don't lose resizability after toggling fullscreen
This commit is contained in:
parent
077292e6b8
commit
7f8b72d864
1 changed files with 1 additions and 1 deletions
|
@ -299,7 +299,7 @@ void video_set_mode(int w, int h, bool fs, bool resizable) {
|
|||
}
|
||||
|
||||
void video_set_fullscreen(bool fullscreen) {
|
||||
video_set_mode(video.intended.width, video.intended.height, fullscreen, video_is_resizable());
|
||||
video_set_mode(video.intended.width, video.intended.height, fullscreen, config_get_int(CONFIG_VID_RESIZABLE));
|
||||
}
|
||||
|
||||
static void* video_screenshot_task(void *arg) {
|
||||
|
|
Loading…
Reference in a new issue