summaryrefslogtreecommitdiff
path: root/src/Dolphin/dvd/dvd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Dolphin/dvd/dvd.c')
-rw-r--r--src/Dolphin/dvd/dvd.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Dolphin/dvd/dvd.c b/src/Dolphin/dvd/dvd.c
index 65c67f6..176ee49 100644
--- a/src/Dolphin/dvd/dvd.c
+++ b/src/Dolphin/dvd/dvd.c
@@ -4,7 +4,7 @@
#include <dolphin/os.h>
#include <dolphin/os/OSBootInfo.h>
-const char* __DVDVersion = "<< Dolphin SDK - DVD\trelease build: Sep 5 2002 05:34:06 (0x2301) >>";
+//const char* __DVDVersion = "<< Dolphin SDK - DVD\trelease build: Sep 5 2002 05:34:06 (0x2301) >>";
typedef void (*stateFunc)(DVDCommandBlock* block);
stateFunc LastState;
@@ -84,7 +84,7 @@ void DVDInit() {
return;
}
- OSRegisterVersion(__DVDVersion);
+ //OSRegisterVersion(__DVDVersion);
DVDInitialized = TRUE;
__DVDFSInit();
__DVDClearWaitingQueue();
@@ -97,10 +97,14 @@ void DVDInit() {
__DIRegs[0] = 0x2a;
__DIRegs[1] = 0;
if (bootInfo->magic == 0xE5207C22) {
+ OSReport("app booted via JTAG\n");
OSReport("load fst\n");
__fstLoad();
} else if (bootInfo->magic != 0xD15EA5E) {
FirstTimeInBootrom = TRUE;
+ OSReport("bootrom\n");
+ } else {
+ OSReport("app booted from bootrom\n");
}
}