You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -08:00
18 lines
309 B
C
18 lines
309 B
C
#include <ultra64.h>
|
|
#include <PR/gs2dex.h>
|
|
#include "config.h"
|
|
#include "init.h"
|
|
#include "s2d_error.h"
|
|
|
|
void s2d_init(void) {
|
|
s2d_error_y = TEX_HEIGHT;
|
|
gSPLoadUcode(gdl_head++, s2d_text, s2d_data);
|
|
}
|
|
|
|
void s2d_stop(void) {
|
|
gSPLoadUcode(gdl_head++, zex_text, zex_data);
|
|
my_rdp_init();
|
|
my_rsp_init();
|
|
}
|
|
|