Prototype fixes
This commit is contained in:
parent
9fb738e2ed
commit
ba0d7ef58c
6 changed files with 20 additions and 3 deletions
|
|
@ -29,10 +29,10 @@ typedef enum {
|
||||||
DEMO_STAT_IO = 4
|
DEMO_STAT_IO = 4
|
||||||
} DEMO_STAT_DISP;
|
} DEMO_STAT_DISP;
|
||||||
|
|
||||||
extern unsigned char DemoStatEnable;
|
|
||||||
|
|
||||||
void DEMOSetStats(DemoStatData * stat, unsigned long nstats, DEMO_STAT_DISP disp);
|
void DEMOSetStats(DemoStatData * stat, unsigned long nstats, DEMO_STAT_DISP disp);
|
||||||
void DEMOUpdateStats(unsigned char inc);
|
void DEMOUpdateStats(unsigned char inc);
|
||||||
void DEMOPrintStats(void);
|
void DEMOPrintStats(void);
|
||||||
|
void DEMOUpdateStats(unsigned char inc);
|
||||||
|
void DEMOPrintStats(void);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,7 @@ u32 VIGetTvFormat(void);
|
||||||
void VISetNextFrameBuffer(void* fb);
|
void VISetNextFrameBuffer(void* fb);
|
||||||
void VIWaitForRetrace(void);
|
void VIWaitForRetrace(void);
|
||||||
void VISetBlack(BOOL black);
|
void VISetBlack(BOOL black);
|
||||||
|
void VIConfigurePan(u16 xOrg, u16 yOrg, u16 width, u16 height);
|
||||||
|
|
||||||
#ifdef TARGET_PC
|
#ifdef TARGET_PC
|
||||||
void VISetWindowTitle(const char* title);
|
void VISetWindowTitle(const char* title);
|
||||||
|
|
|
||||||
|
|
@ -185,6 +185,7 @@ int msmMusPlay(int musId, MSM_MUSPARAM *musParam);
|
||||||
s32 msmMusStop(int musNo, s32 speed);
|
s32 msmMusStop(int musNo, s32 speed);
|
||||||
void msmMusPauseAll(BOOL pause, s32 speed);
|
void msmMusPauseAll(BOOL pause, s32 speed);
|
||||||
s32 msmMusPause(int musNo, BOOL pause, s32 speed);
|
s32 msmMusPause(int musNo, BOOL pause, s32 speed);
|
||||||
|
void msmMusFdoutEnd(void);
|
||||||
s32 msmMusGetMidiCtrl(int musNo, s32 channel, s32 ctrl);
|
s32 msmMusGetMidiCtrl(int musNo, s32 channel, s32 ctrl);
|
||||||
void msmMusStopAll(BOOL checkGrp, s32 speed);
|
void msmMusStopAll(BOOL checkGrp, s32 speed);
|
||||||
s32 msmMusGetStatus(int musNo);
|
s32 msmMusGetStatus(int musNo);
|
||||||
|
|
|
||||||
9
include/game/sreset.h
Normal file
9
include/game/sreset.h
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
#ifndef _GAME_SRESET_H
|
||||||
|
#define _GAME_SRESET_H
|
||||||
|
|
||||||
|
#include "dolphin.h"
|
||||||
|
|
||||||
|
s32 HuSoftResetButtonCheck(void);
|
||||||
|
void HuDvdErrDispInit(GXRenderModeObj *rmode, void *xfb1, void *xfb2);
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
@ -1,5 +1,8 @@
|
||||||
#include "game/init.h"
|
#include "game/init.h"
|
||||||
|
#include "game/memory.h"
|
||||||
#include "game/fault.h"
|
#include "game/fault.h"
|
||||||
|
#include "game/sreset.h"
|
||||||
|
#include "dolphin/demo/DEMOStats.h"
|
||||||
#include "dolphin/os.h"
|
#include "dolphin/os.h"
|
||||||
#include "dolphin/gx.h"
|
#include "dolphin/gx.h"
|
||||||
#include "dolphin/dvd.h"
|
#include "dolphin/dvd.h"
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,11 @@
|
||||||
#include "game/sprite.h"
|
#include "game/sprite.h"
|
||||||
#include "game/hsfformat.h"
|
#include "game/hsfformat.h"
|
||||||
#include "game/hsfman.h"
|
#include "game/hsfman.h"
|
||||||
|
#include "game/minigame_seq.h"
|
||||||
|
#include "game/msm.h"
|
||||||
#include "game/perf.h"
|
#include "game/perf.h"
|
||||||
#include "game/gamework.h"
|
#include "game/gamework.h"
|
||||||
|
#include "game/sreset.h"
|
||||||
|
|
||||||
extern FileListEntry _ovltbl[];
|
extern FileListEntry _ovltbl[];
|
||||||
u32 GlobalCounter;
|
u32 GlobalCounter;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue