Remove accidentally left in testing code

This commit is contained in:
Jeffrey Pfau 2013-04-28 01:46:43 -07:00
parent 5f6b57734d
commit dfd360bfbb
1 changed files with 0 additions and 3 deletions

View File

@ -147,9 +147,6 @@ int32_t GBALoad32(struct ARMMemory* memory, uint32_t address) {
// Unaligned 32-bit loads are "rotated" so they make some semblance of sense // Unaligned 32-bit loads are "rotated" so they make some semblance of sense
int rotate = (address & 3) << 3; int rotate = (address & 3) << 3;
if (!rotate) {
return value;
}
return (value >> rotate) | (value << (32 - rotate)); return (value >> rotate) | (value << (32 - rotate));
} }