2020-02-21 16:22:58 +00:00
|
|
|
|
/* ReC98
|
|
|
|
|
* -----
|
|
|
|
|
* TH03 ZUN.COM -5. Initializes the resident structure and configuration file
|
|
|
|
|
* required in order to run TH03.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <ReC98.h>
|
|
|
|
|
#include "th01/ranks.h"
|
|
|
|
|
#include "th02/snd/snd.h"
|
|
|
|
|
#include "th03/common.h"
|
2020-04-05 14:17:33 +00:00
|
|
|
|
#include "th03/score.h"
|
|
|
|
|
#include "th03/chars.hpp"
|
2020-02-21 16:22:58 +00:00
|
|
|
|
#include "th03/resident.hpp"
|
|
|
|
|
#include "th03/formats/cfg.h"
|
|
|
|
|
|
|
|
|
|
char debug = 0;
|
|
|
|
|
const cfg_options_t OPTS_DEFAULT = { SND_BGM_FM, KM_KEY_KEY, RANK_NORMAL };
|
|
|
|
|
|
|
|
|
|
#include "th02/formats/cfg_init.c"
|
|
|
|
|
|
|
|
|
|
#define LOGO \
|
|
|
|
|
"<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>p<EFBFBD>@ <20>풓<EFBFBD>v<EFBFBD><76><EFBFBD>O<EFBFBD><4F><EFBFBD><EFBFBD><EFBFBD>@RES_YUME.com Version1.00 (c)zun 1997"
|
|
|
|
|
|
2020-02-22 19:04:53 +00:00
|
|
|
|
#define optimization_barrier_3()
|
|
|
|
|
|
|
|
|
|
#define RES_INIT_BOTTOM \
|
|
|
|
|
cfg_init(sgm);
|
|
|
|
|
|
2020-02-21 16:22:58 +00:00
|
|
|
|
#include "th02/res_init.c"
|