Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Sep 16, 2018
1 parent d4eaf18 commit e70565e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cardengine/arm9/source/cardengine.c
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ int cardRead(u32* cacheStruct, u8* dst0, u32 src0, u32 len0) {
// SDK 5
cacheAddress = dev_CACHE_ADRESS_START_SDK5;
}
cacheSlots = (isSdk5(moduleParams) ? dev_CACHE_SLOTS_SDK5 : dev_CACHE_SLOTS);
cacheSlots = ((dsiMode || isSdk5(moduleParams)) ? dev_CACHE_SLOTS_SDK5 : dev_CACHE_SLOTS);
}

//ndsHeader->romSize += 0x1000;
Expand Down

0 comments on commit e70565e

Please sign in to comment.