From 1fb0ea8379a70745cfc6257db8ab872ac53ab445 Mon Sep 17 00:00:00 2001 From: Rick Gaiser Date: Thu, 7 Sep 2023 21:34:44 +0200 Subject: [PATCH] Add rom0:PS2LOGO support --- README.md | 3 ++- ee/loader/src/main.c | 14 +++++++++----- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c773d39..0f4be9e 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,8 @@ Options: - 5: IOP: Emulate DVD-DL Multiple options possible, for example -gc=23 - -eC Enable eecore debug colors + -eC Enable debug colors + -eL Enable logo (adds rom0:PS2LOGO to arguments) --b Break, all following parameters are passed to the ELF diff --git a/ee/loader/src/main.c b/ee/loader/src/main.c index 0942298..7976d6f 100644 --- a/ee/loader/src/main.c +++ b/ee/loader/src/main.c @@ -93,7 +93,8 @@ void print_usage() printf(" - 5: IOP: Emulate DVD-DL\n"); printf(" Multiple options possible, for example -gc=23\n"); printf("\n"); - printf(" -eC Enable eecore debug colors\n"); + printf(" -eC Enable debug colors\n"); + printf(" -eL Enable logo (adds rom0:PS2LOGO to arguments)\n"); printf("\n"); printf(" --b Break, all following parameters are passed to the ELF\n"); printf("\n"); @@ -687,7 +688,8 @@ int main(int argc, char *argv[]) const char *sCompat = NULL; u32 iCompat = 0; enum SCECdvdMediaType eMediaType = SCECdNODISC; - int iEnableDebugColors = 0; + bool bEnableDebugColors = false; + bool bEnablePS2Logo = false; for (i=1; i