Skip to content

Commit

Permalink
Fix missing log function
Browse files Browse the repository at this point in the history
Signed-off-by: Joseph Mattello <[email protected]>
  • Loading branch information
JoeMatt committed Oct 13, 2021
1 parent 3f3da59 commit c88b4a7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/gpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ INLINE uint32_t GPUReadLong(uint32_t offset, uint32_t who/*=UNKNOWN*/)
case 0x1C:
return gpu_remain;
default: // unaligned long read
return break;
break;
}
return 0;
}
Expand Down Expand Up @@ -907,7 +907,6 @@ INLINE static void executeOpcode(uint32_t index) {
gpu_opcode_load_r15_ri();
break;
case 60:

gpu_opcode_store_r14_ri();
break;
case 61:
Expand All @@ -920,7 +919,7 @@ INLINE static void executeOpcode(uint32_t index) {
gpu_opcode_pack();
break;
default:
WriteLog("\nUnknown opcode %i\n", index);
// WriteLog("\nUnknown opcode %i\n", index);
break;
}
}
Expand Down

0 comments on commit c88b4a7

Please sign in to comment.