1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2025-02-20 20:41:22 +01:00

epay: added config because git is dumb

This commit is contained in:
Dniel97 2023-09-15 19:58:46 +02:00
parent 5ef0cf6181
commit f5a7e5b821
No known key found for this signature in database
GPG Key ID: 6180B3C768FB2E08

View File

@ -339,3 +339,10 @@ void dipsw_config_load(struct dipsw_config *cfg, const wchar_t *filename)
}
}
void epay_config_load(struct epay_config *cfg, const wchar_t *filename)
{
assert(cfg != NULL);
assert(filename != NULL);
cfg->enable = GetPrivateProfileIntW(L"epay", L"enable", 1, filename);
}