From 52fb8276d7609fe30f640687c3ce218bf75cc9fa Mon Sep 17 00:00:00 2001 From: Ash Date: Fri, 1 Dec 2017 11:03:09 +1100 Subject: [PATCH] [WiiU] Exception handler: minor comment tweak --- wiiu/system/exception_handler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiiu/system/exception_handler.c b/wiiu/system/exception_handler.c index 7e01e648f6..b867a77a2e 100644 --- a/wiiu/system/exception_handler.c +++ b/wiiu/system/exception_handler.c @@ -90,7 +90,7 @@ void __attribute__((__noreturn__)) exception_cb(OSContext* ctx, OSExceptionType /* First up, the pretty header that tells you wtf just happened */ if (type == OS_EXCEPTION_TYPE_DSI) { - /* Exception type and offending instruction location + opcode */ + /* Exception type and offending instruction location */ buf_add("DSI: Instr at %08" PRIX32, ctx->srr0); /* Was this a read or a write? */ if (ctx->dsisr & DSISR_WRITE_ATTEMPTED) {