Fix for enum_monitors

Function enum_monitors would always stop after first found monitor due to wrong return value.
master
Manuel Kroeber 2014-10-14 20:41:56 +02:00
parent fa1b9a9048
commit ff2c7bd9de
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ static BOOL CALLBACK enum_monitor(HMONITOR handle, HDC hdc, LPRECT rect,
UNUSED_PARAMETER(hdc);
UNUSED_PARAMETER(handle);
return (monitor->desired_id < monitor->cur_id++);
return (monitor->desired_id > monitor->cur_id++);
}
static void update_monitor(struct monitor_capture *capture,