mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 15:01:32 -04:00
6dd1600936
* Move qrand to libc64 * use an union to avoid type punning * __osMalloc * math64.c * fixed_point.h * sleep * aprintf.h * sprintf * malloc * use original names on aprintf.c and malloc.c * qrand cleanup pass * use original names of sleep.c * og names for sprintf * more cleanup * format * fixes * whoops * use ARRAY_COUNT again * comment * Use `fu` * forgot this one * review * fix * sneak a tiny cleanup
22 lines
443 B
C
22 lines
443 B
C
#include "regs.h"
|
|
#include "libc64/malloc.h"
|
|
#include "macros.h"
|
|
|
|
RegEditor* gRegEditor;
|
|
|
|
void Regs_Init(void) {
|
|
s32 i;
|
|
|
|
gRegEditor = malloc(sizeof(RegEditor));
|
|
if (1) {}
|
|
gRegEditor->regPage = 0;
|
|
gRegEditor->regGroup = 0;
|
|
gRegEditor->regCur = 0;
|
|
gRegEditor->inputRepeatTimer = 0;
|
|
gRegEditor->dPadInputPrev = 0;
|
|
|
|
for (i = 0; i < ARRAY_COUNT(gRegEditor->data); i++) {
|
|
gRegEditor->data[i] = 0;
|
|
}
|
|
}
|