mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix tests hanging, after the audio rewrite
This commit is contained in:
parent
74c646cf76
commit
d239f4ece1
2 changed files with 2 additions and 2 deletions
|
@ -140,7 +140,7 @@ void __AudioUpdate()
|
|||
// Sleep here until the host audio hardware is ready to receive samples.
|
||||
// This will effectively throttle the frame rate.
|
||||
|
||||
if (!noThrottle) {
|
||||
if (!noThrottle && g_Config.bEnableSound) {
|
||||
while (true)
|
||||
{
|
||||
if (outAudioQueue.size() < hwBlockSize * 4)
|
||||
|
|
|
@ -135,7 +135,7 @@ int main(int argc, const char* argv[])
|
|||
coreParameter.headLess = true;
|
||||
coreParameter.printfEmuLog = true;
|
||||
|
||||
g_Config.bEnableSound = true;
|
||||
g_Config.bEnableSound = false;
|
||||
g_Config.bFirstRun = false;
|
||||
g_Config.bIgnoreBadMemAccess = true;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue