mirror of
https://github.com/ApacheThunder/GBA-Exploader.git
synced 2025-06-18 19:45:39 -04:00

* Fix mistake that caused DS mode Slot-2 booting to not work. (accidently removed needed arm7 code in previous commit after optimizing code relating to Rumble Menu softreset)
23 lines
373 B
C
23 lines
373 B
C
/***********************************************************
|
||
Arm9 Soft rest for General purpose
|
||
|
||
by Rudolph (<28>c’é)
|
||
***************************************************************/
|
||
|
||
#ifndef RET_MENU9_GEN_H
|
||
#define RET_MENU9_GEN_H
|
||
|
||
#ifdef __cplusplus
|
||
extern "C" {
|
||
#endif
|
||
|
||
bool ret_menu_chk();
|
||
bool ret_menu9_Gen();
|
||
|
||
#ifdef __cplusplus
|
||
}
|
||
#endif
|
||
|
||
#endif // RET_MENU9_GEN_H
|
||
|