Adjustments to changes made for mac (#10)

This commit is contained in:
Garrett Cox
2024-05-22 09:04:57 -05:00
parent d46b3bc2fa
commit d1cce09094
2 changed files with 3 additions and 2 deletions
+1 -2
View File
@@ -1,9 +1,8 @@
#include "padutils.h"
#include <strings.h>
#include <ultratypes.h>
void PadUtils_Init(Input* input) {
bzero(input, sizeof(Input));
memset(input, 0, sizeof(Input));
}
void func_80085150(void) {
+2
View File
@@ -1,7 +1,9 @@
#include "buffers.h"
#include <assert.h>
#include <stdlib.h>
#ifndef _MSC_VER
#include <unistd.h>
#endif
u8* gAudioHeap;