forked from TeamTofuShop/segatools
chunihook/slider.c: Add config
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
#include <windows.h>
|
||||
|
||||
#include <assert.h>
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include "amex/config.h"
|
||||
@ -11,6 +12,14 @@
|
||||
|
||||
#include "platform/config.h"
|
||||
|
||||
void slider_config_load(struct slider_config *cfg, const wchar_t *filename)
|
||||
{
|
||||
assert(cfg != NULL);
|
||||
assert(filename != NULL);
|
||||
|
||||
cfg->enable = GetPrivateProfileIntW(L"slider", L"enable", 1, filename);
|
||||
}
|
||||
|
||||
void chuni_hook_config_load(
|
||||
struct chuni_hook_config *cfg,
|
||||
const wchar_t *filename)
|
||||
@ -23,4 +32,5 @@ void chuni_hook_config_load(
|
||||
nu_config_load(&cfg->nu, filename);
|
||||
amex_config_load(&cfg->amex, filename);
|
||||
gfx_config_load(&cfg->gfx, filename);
|
||||
slider_config_load(&cfg->slider, filename);
|
||||
}
|
||||
|
Reference in New Issue
Block a user