formatting

This commit is contained in:
Julgodis
2021-01-29 22:52:35 +01:00
parent 4442f8e1dd
commit b27de6e351
3 changed files with 13 additions and 12 deletions
+4 -4
View File
@@ -24,10 +24,10 @@ JKRAMCommand* JKRAramPiece::orderAsync(int direction, u32 source, u32 destinatio
JKRAramBlock* block, JKRAMCommand::AsyncCallback callback) {
lock();
if (((source & 0x1f) != 0) || ((destination & 0x1f) != 0)) {
OSReport("direction = %x\n", direction);
OSReport("source = %x\n", source);
OSReport("destination = %x\n", destination);
OSReport("length = %x\n", length);
OSReport("direction = %x\n", direction);
OSReport("source = %x\n", source);
OSReport("destination = %x\n", destination);
OSReport("length = %x\n", length);
JUTException_NS_panic_f("JKRAramPiece.cpp", 0x6c, "%s", "illegal address. abort.");
}
-1
View File
@@ -207,4 +207,3 @@ JKRAramStreamCommand::JKRAramStreamCommand() {
s32 JSURandomInputStream::getAvailable() const {
return getLength() - getPosition();
}