mirror of
https://github.com/zeldaret/oot
synced 2026-06-01 09:47:45 -04:00
Decompile sleep.c and printutils.c
- Decompile sleep.c (OK) - Decompile printutils.c (OK) - Fix 1 non-matching in z_room.c - Get rid of some magic numbers
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
#include <global.h>
|
||||
|
||||
void PrintUtils_VPrintf(char** arg0, const char* fmt, va_list args)
|
||||
{
|
||||
_Printf(*arg0, arg0, fmt, args);
|
||||
}
|
||||
|
||||
void PrintUtils_Printf(void* arg0, const char* fmt, ...)
|
||||
{
|
||||
va_list args;
|
||||
va_start(args, fmt);
|
||||
|
||||
PrintUtils_VPrintf(arg0, fmt, args);
|
||||
}
|
||||
Reference in New Issue
Block a user