From b0c52686d194c5695ef0002196a8a7db43fe0edf Mon Sep 17 00:00:00 2001 From: Hay1tsme Date: Sat, 22 Feb 2025 13:17:57 -0500 Subject: [PATCH] epay: fix config --- platform/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/config.c b/platform/config.c index f399348..cc26ca1 100644 --- a/platform/config.c +++ b/platform/config.c @@ -250,7 +250,7 @@ void es3sec_config_load(struct es3sec_config *cfg, const wchar_t *filename) void epay_config_load(struct epay_config *cfg, const wchar_t *filename) { - cfg->enable = GetPrivateProfileIntW(L"dongle", L"enable", 1, filename); + cfg->enable = GetPrivateProfileIntW(L"epay", L"enable", 1, filename); } void amactivator_config_load(struct amactivator_config *cfg, const wchar_t *filename)