forked from TeamTofuShop/segatools
divahook/config.c: Consolidate config
This commit is contained in:
19
divahook/config.c
Normal file
19
divahook/config.c
Normal file
@ -0,0 +1,19 @@
|
||||
#include <assert.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include "amex/config.h"
|
||||
|
||||
#include "divahook/config.h"
|
||||
|
||||
#include "platform/config.h"
|
||||
|
||||
void diva_hook_config_load(
|
||||
struct diva_hook_config *cfg,
|
||||
const wchar_t *filename)
|
||||
{
|
||||
assert(cfg != NULL);
|
||||
assert(filename != NULL);
|
||||
|
||||
amex_config_load(&cfg->amex, filename);
|
||||
nu_config_load(&cfg->nu, filename);
|
||||
}
|
Reference in New Issue
Block a user