1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2024-11-14 08:07:37 +01:00
segatools-dniel97/mu3hook/config.c

20 lines
380 B
C
Raw Normal View History

#include <assert.h>
2019-08-31 01:06:32 +02:00
#include <stddef.h>
#include "board/config.h"
#include "mu3hook/config.h"
#include "platform/config.h"
void mu3_hook_config_load(
struct mu3_hook_config *cfg,
const wchar_t *filename)
{
assert(cfg != NULL);
assert(filename != NULL);
platform_config_load(&cfg->platform, filename);
2019-08-31 01:06:32 +02:00
aime_config_load(&cfg->aime, filename);
}