Stage.cpp cleanup
This commit is contained in:
parent
e4ff51dc83
commit
156e47438c
3 changed files with 29 additions and 27 deletions
|
@ -130,17 +130,19 @@ const STAGE_TABLE gTMT[95] = {
|
|||
|
||||
BOOL TransferStage(int no, int w, int x, int y)
|
||||
{
|
||||
BOOL bError;
|
||||
char path_dir[20];
|
||||
char path[MAX_PATH];
|
||||
|
||||
// Move character
|
||||
SetMyCharPosition(x * 0x10 * 0x200, y * 0x10 * 0x200);
|
||||
|
||||
BOOL bError = FALSE;
|
||||
bError = FALSE;
|
||||
|
||||
// Get path
|
||||
char path_dir[20];
|
||||
strcpy(path_dir, "Stage");
|
||||
|
||||
// Load tileset
|
||||
char path[MAX_PATH];
|
||||
sprintf(path, "%s\\Prt%s", path_dir, gTMT[no].parts);
|
||||
if (!ReloadBitmap_File(path, SURFACE_ID_LEVEL_TILESET))
|
||||
bError = TRUE;
|
||||
|
@ -196,12 +198,12 @@ BOOL TransferStage(int no, int w, int x, int y)
|
|||
InitBossChar(gTMT[no].boss_no);
|
||||
ResetFlash();
|
||||
gStageNo = no;
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
// Music
|
||||
const char *gMusicTable[42] =
|
||||
{
|
||||
const char *gMusicTable[42] = {
|
||||
"XXXX",
|
||||
"WANPAKU",
|
||||
"ANZEN",
|
||||
|
@ -226,7 +228,7 @@ const char *gMusicTable[42] =
|
|||
"ACCESS",
|
||||
"IRONH",
|
||||
"GRAND",
|
||||
"Curly", // Uses the original filename instead of the internal 8.3 one
|
||||
"Curly", // Uses the original filename instead of the internal allcaps one
|
||||
"OSIDE",
|
||||
"REQUIEM",
|
||||
"WANPAK2",
|
||||
|
@ -270,7 +272,7 @@ void ChangeMusic(MusicID no)
|
|||
gMusicNo = no;
|
||||
}
|
||||
|
||||
void ReCallMusic()
|
||||
void ReCallMusic(void)
|
||||
{
|
||||
// Stop old song
|
||||
StopOrganyaMusic();
|
||||
|
|
|
@ -65,4 +65,4 @@ extern MusicID gMusicNo;
|
|||
|
||||
BOOL TransferStage(int no, int w, int x, int y);
|
||||
void ChangeMusic(MusicID no);
|
||||
void ReCallMusic();
|
||||
void ReCallMusic(void);
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#pragma once
|
||||
|
||||
void InitStar();
|
||||
void ActStar();
|
||||
void InitStar(void);
|
||||
void ActStar(void);
|
||||
void PutStar(int fx, int fy);
|
||||
|
|
Loading…
Add table
Reference in a new issue