xcb: Fixed return value of xcb_deinit

`xcb_deinit` returns `true` to fit the capture interface standard.
This commit is contained in:
vmfortress 2021-10-30 14:16:18 -04:00 committed by Geoffrey McRae
parent 2824238b4d
commit fbf294efd9

View File

@ -178,7 +178,7 @@ static bool xcb_deinit(void)
}
this->initialized = false;
return false;
return true;
}
static void xcb_free(void)