mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-13 06:15:07 +01:00
[Gamecube/Wii] fixed compilation issue with GCC 10.x used in devkitPPC r37 and later
This commit is contained in:
parent
c718b1f3f2
commit
a8d15733fb
@ -3,7 +3,7 @@
|
||||
*
|
||||
* generic GUI Engine (using GX rendering)
|
||||
*
|
||||
* Copyright Eke-Eke (2009-2019)
|
||||
* Copyright Eke-Eke (2009-2020)
|
||||
*
|
||||
* Redistribution and use of this code or any derivative works are permitted
|
||||
* provided that the following conditions are met:
|
||||
@ -45,6 +45,8 @@
|
||||
gx_texture *w_pointer;
|
||||
#endif
|
||||
|
||||
gui_input m_input;
|
||||
|
||||
u8 SILENT = 0;
|
||||
|
||||
/* message box */
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* generic GUI Engine (using GX rendering)
|
||||
*
|
||||
* Copyright Eke-Eke (2009-2019)
|
||||
* Copyright Eke-Eke (2009-2020)
|
||||
*
|
||||
* Redistribution and use of this code or any derivative works are permitted
|
||||
* provided that the following conditions are met:
|
||||
@ -149,13 +149,15 @@ typedef struct
|
||||
} gui_message;
|
||||
|
||||
/* Menu inputs */
|
||||
struct t_input_menu
|
||||
typedef struct
|
||||
{
|
||||
u16 keys;
|
||||
#ifdef HW_RVL
|
||||
struct ir_t ir;
|
||||
#endif
|
||||
} m_input;
|
||||
} gui_input;
|
||||
|
||||
extern gui_input m_input;
|
||||
|
||||
/* Optionbox callback */
|
||||
typedef void (*optioncallback)(void);
|
||||
|
Loading…
Reference in New Issue
Block a user