mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-09 21:51:48 +00:00
Bump version
This commit is contained in:
parent
195d9797fe
commit
82a4d03985
3 changed files with 4 additions and 3 deletions
2
Makefile
2
Makefile
|
@ -11,7 +11,7 @@ include $(DEVKITARM)/base_rules
|
||||||
IPL_LOAD_ADDR := 0x40003000
|
IPL_LOAD_ADDR := 0x40003000
|
||||||
LPVERSION_MAJOR := 2
|
LPVERSION_MAJOR := 2
|
||||||
LPVERSION_MINOR := 5
|
LPVERSION_MINOR := 5
|
||||||
LPVERSION_BUGFX := 0
|
LPVERSION_BUGFX := 1
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ void gfx_clearscreen(){
|
||||||
|
|
||||||
gfx_box(0, 0, 719, 15, COLOR_WHITE);
|
gfx_box(0, 0, 719, 15, COLOR_WHITE);
|
||||||
gfx_con_setpos(0, 0);
|
gfx_con_setpos(0, 0);
|
||||||
gfx_printf("Tegraexplorer v1.5.0\n");
|
gfx_printf("Tegraexplorer v1.5.1\n");
|
||||||
|
|
||||||
RESETCOLOR;
|
RESETCOLOR;
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,7 +38,7 @@ int parseIntInput(char *in, int *out){
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
int parseJmpInput(char *in, u64 *out){
|
int parseJmpInput(char *in, u64 *out){
|
||||||
if (in[0] == '?'){
|
if (in[0] == '?'){
|
||||||
if (str_jmp_find(in, out))
|
if (str_jmp_find(in, out))
|
||||||
|
@ -49,6 +49,7 @@ int parseJmpInput(char *in, u64 *out){
|
||||||
else
|
else
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
int parseStringInput(char *in, char **out){
|
int parseStringInput(char *in, char **out){
|
||||||
if (in[0] == '$'){
|
if (in[0] == '$'){
|
||||||
|
|
Loading…
Reference in a new issue