mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2024-11-13 16:00:46 +01:00
05e4dda8e6
Fixes non-PCH build.
20 lines
372 B
C
20 lines
372 B
C
#include <assert.h>
|
|
#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);
|
|
|
|
alls_config_load(&cfg->alls, filename);
|
|
aime_config_load(&cfg->aime, filename);
|
|
}
|