diff options
| author | spicyjpeg <thatspicyjpeg@gmail.com> | 2023-04-04 01:14:36 +0200 |
|---|---|---|
| committer | spicyjpeg <thatspicyjpeg@gmail.com> | 2023-04-04 01:14:36 +0200 |
| commit | f7d9c309661f3027d5bfd119b3daf814e26ef589 (patch) | |
| tree | 36299daf69c4f435a0f32ebb0b52ada9c799700a /tools | |
| parent | fd846206ae9419af5ed227989b3ad49b541a823c (diff) | |
Add PCDRV API, fix warnings and DS region misdetection
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/util/elf2x.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/tools/util/elf2x.c b/tools/util/elf2x.c index 38ed60d..fc0ea9f 100644 --- a/tools/util/elf2x.c +++ b/tools/util/elf2x.c @@ -237,13 +237,10 @@ int main(int argc, char** argv) { exe.params.t_size = exe_tsize; exe.params.pc0 = head.prg_entry_addr; - // Some later PAL BIOS versions seem to actually verify the license string - // in the executable (despite what the nocash docs claim) and display the - // dreaded "insert PlayStation CD-ROM" screen if it's not valid. strncpy( exe.header, "PS-X EXE", 8 ); - strcpy( exe.license, - "Sony Computer Entertainment Inc. for Europe area" ); - strcpy( exe.pad2, "Built using GCC and PSn00bSDK libraries" ); + //strcpy( exe.license, + //"Sony Computer Entertainment Inc. for Europe area" ); + //strcpy( exe.pad2, "Built using GCC and PSn00bSDK libraries" ); // Write file |
