diff --git a/README.md b/README.md index 86264ec..fb7f6d2 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Wii U Firmware Emulator -This emulator emulates the Wii U processors and hardware at the lowest level. It's currently able to emulate all the way through boot1, IOSU and Cafe OS until men.rpx panics for some reason. +This emulator emulates the Wii U processors and hardware at the lowest level. It's currently able to emulate all the way through boot1, IOSU and Cafe OS up to the Wii U menu. This emulator used to be written in both Python and C++. You can still find the source code of this emulator in the branch 'old'. diff --git a/src/hardware/gpu.cpp b/src/hardware/gpu.cpp index 6c8690b..6ddbd16 100644 --- a/src/hardware/gpu.cpp +++ b/src/hardware/gpu.cpp @@ -110,7 +110,7 @@ void PM4Processor::process(uint32_t value) { } else if (type == 2) {} else { - runtime_error("Unknown pm4 packet type: %i", type); + Logger::warning("Unknown pm4 packet type: %i", type); } } else if (state == STATE_ARGUMENTS) { @@ -196,7 +196,7 @@ void PM4Processor::execute() { } } else { - runtime_error("Unknown pm4 packet type: %i", type); + Logger::warning("Unknown pm4 packet type: %i", type); } }