Skip to content

Commit 945d787

Browse files
authored
forbid formatting internal HDD on PSX DESR Console (#59)
mostly because some noobs format the HDD on PSX while game area is not expanded, resulting in hdd damage because program made partitions wich a size that doesnt fit APA standards (partition sizes wich are not a multiple of 128mb)
1 parent 3653259 commit 945d787

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/hdd.c

+3
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,9 @@ int MenuParty(PARTYINFO Info)
361361
unmountParty(1); //unconditionally unmount secondary mountpoint
362362

363363
memset(enable, TRUE, NUM_MENU);
364+
if (console_is_PSX) {
365+
enable[FORMAT] = FALSE;
366+
}
364367

365368
if ((Info.Name[0] == '_') && (Info.Name[1] == '_')) {
366369
enable[REMOVE] = FALSE;

src/main.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -2551,9 +2551,10 @@ int main(int argc, char *argv[])
25512551

25522552
Reset();
25532553
Init_Default_Language();
2554-
if (exists("rom0:PSXVER"))
2554+
if (exists("rom0:PSXVER")) {
25552555
console_is_PSX = 1;
2556-
DPRINTF("is PSX = %d\n", console_is_PSX);
2556+
DPRINTF("# Console is PSX-DESR\n");
2557+
}
25572558
LaunchElfDir[0] = 0;
25582559
boot_path[0] = 0;
25592560

0 commit comments

Comments
 (0)