mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-14 05:15:12 +01:00
Update to v1.5.4
* Fixed building with latest devkitPPC + libogc. * Fixed warnings.
This commit is contained in:
parent
d8441902eb
commit
231d36f062
@ -1,3 +1,7 @@
|
||||
1.5.4:
|
||||
* fixed building with latest devkitPPC + libogc
|
||||
* fixed warnings
|
||||
|
||||
1.5.3:
|
||||
* changed layout of debug text to ensure it's always visible
|
||||
* added colors to debug text
|
||||
|
@ -25,7 +25,7 @@ INCLUDES := $(DEVKITPRO)/libogc
|
||||
# options for code generation
|
||||
#---------------------------------------------------------------------------------
|
||||
|
||||
CFLAGS = -save-temps -g -O2 -Wall $(MACHDEP) $(INCLUDE)
|
||||
CFLAGS = -save-temps -g -O2 -Wall -Wno-unused-variable $(MACHDEP) $(INCLUDE)
|
||||
CXXFLAGS = $(CFLAGS)
|
||||
ASFLAGS = $(INCLUDE) -D_LANGUAGE_ASSEMBLY
|
||||
|
||||
|
@ -24,7 +24,7 @@
|
||||
#define MEM_REG_BASE 0xd8b4000
|
||||
#define MEM_PROT (MEM_REG_BASE + 0x20a)
|
||||
|
||||
void TextColor(u32 color, u8 bold)
|
||||
void TextColor(u8 color, u8 bold)
|
||||
{
|
||||
/* Set foreground color */
|
||||
printf("\x1b[%u;%um", color + 30, bold);
|
||||
|
@ -20,7 +20,7 @@
|
||||
/**
|
||||
* Version information for Libruntimeiospatch.
|
||||
*/
|
||||
#define LIB_RUNTIMEIOSPATCH_VERSION "1.5.3"
|
||||
#define LIB_RUNTIMEIOSPATCH_VERSION "1.5.4"
|
||||
|
||||
//==============================================================================
|
||||
// HW_RVL header
|
||||
@ -46,12 +46,6 @@ extern "C" {
|
||||
#endif
|
||||
/* __cplusplus */
|
||||
|
||||
//==============================================================================
|
||||
// Extra standard declarations
|
||||
//==============================================================================
|
||||
typedef signed int s32;
|
||||
//==============================================================================
|
||||
|
||||
//==============================================================================
|
||||
// Patchsets:
|
||||
//==============================================================================
|
||||
|
Loading…
Reference in New Issue
Block a user