1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-08 12:15:49 +00:00

[WiiU] Exception handler: minor comment tweak

This commit is contained in:
Ash 2017-12-01 11:03:09 +11:00
parent 469662345f
commit 52fb8276d7
No known key found for this signature in database
GPG Key ID: F8C85A8C836C0A7E

View File

@ -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) {