Log unhandled case in FPSCR::checkSliceRounding().

This commit is contained in:
Unknown W. Brackets 2014-04-27 20:34:47 -07:00
parent 2fdefc4fb5
commit 563aa2d2ca
1 changed files with 4 additions and 0 deletions

View File

@ -178,6 +178,10 @@ public:
case 1:
return this->low >> 22 & 0x3;
default:
ConLog.Error("Unexpected slice value in FPSCR::checkSliceRounding(): %d", slice);
return 0;
}
}