Removed UNUSED attribute

This commit is contained in:
Eduardo Quezada
2022-09-04 18:06:58 -03:00
parent b3c7b9e09f
commit 81ef26732d
19 changed files with 110 additions and 82 deletions
+4 -2
View File
@@ -588,7 +588,8 @@ static const struct {
{MAP_BATTLE_SCENE_LINK, BATTLE_TERRAIN_LINK}
};
UNUSED void CreateUnknownDebugSprite(void)
// Unused
void CreateUnknownDebugSprite(void)
{
u8 spriteId;
@@ -634,7 +635,8 @@ static void LoadBattleTerrainEntryGfx(u16 terrain)
LZDecompressVram(sBattleTerrainTable[terrain].entryTilemap, (void *)BG_SCREEN_ADDR(28));
}
UNUSED void GetBattleTerrainGfxPtrs(u8 terrain, const u32 **tilesPtr, const u32 **mapPtr, const u32 **palPtr)
// Unused
void GetBattleTerrainGfxPtrs(u8 terrain, const u32 **tilesPtr, const u32 **mapPtr, const u32 **palPtr)
{
if (terrain > BATTLE_TERRAIN_PLAIN)
terrain = BATTLE_TERRAIN_PLAIN;