Skip to content

Commit

Permalink
win-capture: Always use anti-cheat by default
Browse files Browse the repository at this point in the history
Originally this on by default, but then was changed to being off by
default because it was thought that there were permission issues, but it
turned out that the permission issues were a separate bug, so it's safe
to have this be default to on again.
  • Loading branch information
jp9000 committed Mar 21, 2016
1 parent 363d449 commit bcdb3dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/win-capture/game-capture.c
Original file line number Diff line number Diff line change
Expand Up @@ -1400,7 +1400,7 @@ static void game_capture_defaults(obs_data_t *settings)
obs_data_set_default_string(settings, SETTING_SCALE_RES, "0x0");
obs_data_set_default_bool(settings, SETTING_LIMIT_FRAMERATE, false);
obs_data_set_default_bool(settings, SETTING_CAPTURE_OVERLAYS, false);
obs_data_set_default_bool(settings, SETTING_ANTI_CHEAT_HOOK, false);
obs_data_set_default_bool(settings, SETTING_ANTI_CHEAT_HOOK, true);
}

static bool any_fullscreen_callback(obs_properties_t *ppts,
Expand Down

0 comments on commit bcdb3dc

Please sign in to comment.