Skip to content

Commit 37a924d

Browse files
committed
Release 7.6.1, added more print statements for other errors that may happen
1 parent 55e75e9 commit 37a924d

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Copy the official firmware update to `PSP/GAME/UPDATE/EBOOT.PBP` on your memory
99
The downgrader is "signed", and can be launched without having a custom firmware installed. Once you run the application, follow the on-screen instructions.
1010

1111
## Changelog
12+
### Version 7.6.1
13+
* Added more print statements for less common issues with parsing EBOOT.PBP or the buffer
1214
### Version 7.6
1315
* Changed Default color, makes it a bit easier to read.
1416
* Detect which OFW you have to make sure your flashing the proper model OFW. ( i.e You can only flash GO OFW on GO and vice versa )

src/Makefile.signed

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ LIBS = -lpsppower
2727
PSP_FW_VERSION = 271
2828

2929
EXTRA_TARGETS = EBOOT.PBP
30-
PSP_EBOOT_TITLE = Chronoswitch Downgrader v7.6
30+
PSP_EBOOT_TITLE = Chronoswitch Downgrader v7.6.1
3131

3232
BUILD_PRX = 1
3333

src/main.c

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
#include "kernel_exploit.h"
2828
#include "rebootex.h"
2929

30-
PSP_MODULE_INFO("Chronoswitch", 0, 7, 6);
30+
PSP_MODULE_INFO("Chronoswitch", 0, 7, 61);
3131
PSP_MAIN_THREAD_ATTR(PSP_THREAD_ATTR_VFPU);
3232
PSP_HEAP_SIZE_KB(3 << 10);
3333

34-
#define DOWNGRADER_VER ("7.6")
34+
#define DOWNGRADER_VER ("7.6.1")
3535

3636

3737
typedef struct __attribute__((packed))
@@ -128,6 +128,7 @@ u32 get_updater_version(char *argv)
128128
if (sfo_size > sizeof(sfo_buffer))
129129
{
130130
/* too much */
131+
printf("\nTo much deditated wammm ... Perhaps not have all your plugins running right now ...\n");
131132
sceIoClose(fd);
132133
return 0xFFF;
133134
}
@@ -153,6 +154,7 @@ u32 get_updater_version(char *argv)
153154
/* see if we went through all the data */
154155
if (i == header->count)
155156
{
157+
printf("\nHmmm SFO count is too big ... Looks like the EBOOT.PBP is corrupted somehow.\n");
156158
return 0xFFF;
157159
}
158160

@@ -178,7 +180,7 @@ int main(int argc, char *argv[])
178180
/* display welcome message */
179181
printf(
180182
"Chronoswitch Downgrader" "\n"
181-
"Version %s. Built %s %s" "\n" "\n"
183+
"Version %s Built %s %s" "\n" "\n"
182184

183185
"Contributions:" "\n"
184186
"\t" "6.31/6.35 Support added by Davee" "\n"

0 commit comments

Comments
 (0)