library: Cleanup headers

This commit is contained in:
Antonio Niño Díaz 2023-05-11 23:36:17 +01:00
parent 7aac024b0b
commit 57cc1d519c
12 changed files with 199 additions and 198 deletions

View File

@ -103,7 +103,7 @@ void NF_DmaMemCopy(void* destination, const void* source, u32 size);
/// 6 : Chinese /// 6 : Chinese
/// ///
/// @return The language ID. /// @return The language ID.
extern u8 NF_GetLanguage(void); u8 NF_GetLanguage(void);
/// @} /// @}

View File

@ -218,7 +218,8 @@ void NF_LoadTiledBg(const char* file, const char* name, u16 width, u16 height);
/// @param height Height of the BG in pixels. /// @param height Height of the BG in pixels.
/// @param tile_start First tile to load. /// @param tile_start First tile to load.
/// @param tile_end Last tile to load. /// @param tile_end Last tile to load.
void NF_LoadTilesForBg(const char* file, const char* name, u16 width, u16 height, u16 tile_start, u16 tile_end); void NF_LoadTilesForBg(const char *file, const char *name, u16 width, u16 height,
u16 tile_start, u16 tile_end);
/// Delete from RAM the BG with the specified name. /// Delete from RAM the BG with the specified name.
/// ///