win-capture: Log more hooking errors
Adds a few previously-missing log messages that specify the actual reason why there was an error acquiring the hook, rather than just saying nothing.master
parent
e7790ab52c
commit
c1289b893e
|
@ -318,6 +318,7 @@ static void game_capture_update(void *data, obs_data_t *settings)
|
|||
|
||||
if (cfg.force_scaling && (cfg.scale_cx == 0 || cfg.scale_cy == 0)) {
|
||||
gc->error_acquiring = true;
|
||||
warn("error acquiring, scale is bad");
|
||||
} else {
|
||||
gc->error_acquiring = false;
|
||||
}
|
||||
|
@ -738,7 +739,8 @@ static void try_hook(struct game_capture *gc)
|
|||
&gc->process_id);
|
||||
|
||||
if (!gc->thread_id || !gc->process_id) {
|
||||
warn("failed to get window thread/process ids: %d",
|
||||
warn("error acquiring, failed to get window "
|
||||
"thread/process ids: %d",
|
||||
GetLastError());
|
||||
gc->error_acquiring = true;
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue