0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 13:08:50 +02:00

win-capture: Log when game capture compatibilty mode is set

This commit is contained in:
Richard Stanway 2017-07-01 21:36:27 +02:00
parent daaa2741a7
commit bc3a5cb832
No known key found for this signature in database
GPG Key ID: AAC1E5265D71B3FD

View File

@ -725,6 +725,11 @@ static inline bool init_hook_info(struct game_capture *gc)
return false;
}
if (gc->config.force_shmem) {
warn("init_hook_info: user is forcing shared memory "
"(compatibility mode)");
}
gc->global_hook_info->offsets = gc->process_is_64bit ?
offsets64 : offsets32;
gc->global_hook_info->capture_overlay = gc->config.capture_overlays;