mirror of https://github.com/n64decomp/mk64.git
fix typo src (#652)
Co-authored-by: MegaMech <MegaMech@users.noreply.github.com>
This commit is contained in:
parent
684cc201c2
commit
52fd80f4cc
|
|
@ -1,4 +1,4 @@
|
|||
#include "ultra64.h"
|
||||
#include <ultra64.h>
|
||||
#include "osint.h"
|
||||
#include "piint.h"
|
||||
#include "libultra_internal.h"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#include "libultra_internal.h"
|
||||
#include "PR/rcp.h"
|
||||
#include <PR/rcp.h>
|
||||
#include "controller.h"
|
||||
|
||||
extern s32 __osPfsGetStatus(OSMesgQueue *, s32);
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#include "libultra_internal.h"
|
||||
#include "PR/rcp.h"
|
||||
#include <PR/rcp.h>
|
||||
#include "controller.h"
|
||||
|
||||
extern s32 __osPfsGetStatus(OSMesgQueue *, s32);
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
#ifndef _CONTROLLER_H
|
||||
#define _CONTROLLER_H
|
||||
#include "PR/os_internal.h"
|
||||
#include "PR/os.h"
|
||||
#include "PR/rcp.h"
|
||||
#include <PR/os_internal.h>
|
||||
#include <PR/os.h>
|
||||
#include <PR/rcp.h>
|
||||
|
||||
//should go somewhere else but
|
||||
#define ARRLEN(x) ((s32)(sizeof(x) / sizeof(x[0])))
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#ifdef VERSION_SH
|
||||
|
||||
#include "PR/os_internal.h"
|
||||
#include <PR/os_internal.h>
|
||||
#include "piint.h"
|
||||
|
||||
s32 osEPiStartDma(OSPiHandle *pihandle, OSIoMesg *mb, s32 direction) {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#include "libultra_internal.h"
|
||||
#include "PR/rcp.h"
|
||||
#include <PR/rcp.h>
|
||||
#include "bstring.h"
|
||||
#include "piint.h"
|
||||
#include "osint.h"
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
#include "libultra_internal.h"
|
||||
|
||||
#include "PR/os_vi.h"
|
||||
#include "PR/os_internal.h"
|
||||
#include "PR/R4300.h"
|
||||
#include "PR/rcp.h"
|
||||
#include "PR/os_pi.h"
|
||||
#include "PR/os.h"
|
||||
#include <PR/os_vi.h>
|
||||
#include <PR/os_internal.h>
|
||||
#include <PR/R4300.h>
|
||||
#include <PR/rcp.h>
|
||||
#include <PR/os_pi.h>
|
||||
#include <PR/os.h>
|
||||
|
||||
OSPiHandle CartRomHandle;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#include "libultra_internal.h"
|
||||
#include "hardware.h"
|
||||
#include "new_func.h"
|
||||
#include "PR/R4300.h"
|
||||
#include <PR/R4300.h>
|
||||
//! @todo This define is from piint.h, but including that causes problems...
|
||||
#define UPDATE_REG(reg, var) \
|
||||
if (cHandle->var != pihandle->var) \
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#include "libultra_internal.h"
|
||||
|
||||
#include "PR/os_pi.h"
|
||||
#include <PR/os_pi.h>
|
||||
#include "controller.h"
|
||||
|
||||
OSPifRam __osPfsPifRam;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#include "libultra_internal.h"
|
||||
#include "PR/os.h"
|
||||
#include <PR/os.h>
|
||||
#include "controller.h"
|
||||
|
||||
s32 osPfsNumFiles(OSPfs *pfs, s32 *max_files, s32 *files_used)
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
#ifndef _PIINT_H
|
||||
#define _PIINT_H
|
||||
#include "PR/os_internal.h"
|
||||
#include "PR/rcp.h"
|
||||
#include "PR/os_pi.h"
|
||||
#include "PR/os.h"
|
||||
#include <PR/os_internal.h>
|
||||
#include <PR/rcp.h>
|
||||
#include <PR/os_pi.h>
|
||||
#include <PR/os.h>
|
||||
|
||||
//https://github.com/LuigiBlood/64dd/wiki/Memory-Map
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue