[epay]: hook enabled by default

This commit is contained in:
2025-07-27 18:06:58 +02:00
parent ded1375e88
commit bb01e131e9
3 changed files with 4 additions and 8 deletions

View File

@ -360,5 +360,5 @@ void epay_config_load(struct epay_config *cfg, const wchar_t *filename)
assert(filename != NULL);
cfg->enable = GetPrivateProfileIntW(L"epay", L"enable", 1, filename);
cfg->hook = GetPrivateProfileIntW(L"epay", L"hook", 0, filename);
cfg->hook = GetPrivateProfileIntW(L"epay", L"hook", 1, filename);
}