Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Tweaked the aram dma exception timing to fix the hang that occurred i…
…n Viewtiful Joe.
  • Loading branch information
skidau committed Apr 18, 2013
1 parent e2ae73b commit 3a6492d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/Src/HW/DSP.cpp
Expand Up @@ -691,7 +691,7 @@ void Do_ARAM_DMA()
CoreTiming::ScheduleEvent_Threadsafe(0, et_GenerateDSPInterrupt, INT_ARAM | (1<<16));

// Force an early exception check on large transfers. Fixes RE2 audio.
if (g_arDMA.Cnt.count > 2048 && g_arDMA.Cnt.count <= 10240)
if (g_arDMA.Cnt.count > 2048 && g_arDMA.Cnt.count <= 6144)
CoreTiming::ForceExceptionCheck(100);

// Real hardware DMAs in 32byte chunks, but we can get by with 8byte chunks
Expand Down

0 comments on commit 3a6492d

Please sign in to comment.