Add mesg about fullscreen and monitor setup

This commit is contained in:
QC 2015-10-18 13:45:15 +02:00
parent 93b6b83fb9
commit 73fd87f820
1 changed files with 6 additions and 0 deletions

View File

@ -573,6 +573,12 @@ void config_sanity_check ( Display *display )
found_error = 1;
}
}
if ( config.fullscreen && config.monitor != -1 ) {
g_string_append_printf ( msg, "\t<b>config.monitor</b>=%d is invalid. Value should be unset (-1) when fullscreen mode is enabled.\n",
config.monitor);
config.monitor = -1;
found_error = 1;
}
// Check size
{