mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	hle/service/audio/audout_u: Correct lack of return in failure case of AppendAudioOutBufferImpl()
Previously we were overwriting the error case with a success code further down (which is definitely not what we should be doing here).
This commit is contained in:
		
							parent
							
								
									234f00bdd4
								
							
						
					
					
						commit
						9ac176d5a3
					
				@ -138,6 +138,7 @@ private:
 | 
				
			|||||||
        if (!audio_core.QueueBuffer(stream, tag, std::move(samples))) {
 | 
					        if (!audio_core.QueueBuffer(stream, tag, std::move(samples))) {
 | 
				
			||||||
            IPC::ResponseBuilder rb{ctx, 2};
 | 
					            IPC::ResponseBuilder rb{ctx, 2};
 | 
				
			||||||
            rb.Push(ERR_BUFFER_COUNT_EXCEEDED);
 | 
					            rb.Push(ERR_BUFFER_COUNT_EXCEEDED);
 | 
				
			||||||
 | 
					            return;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        IPC::ResponseBuilder rb{ctx, 2};
 | 
					        IPC::ResponseBuilder rb{ctx, 2};
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user