mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	Merge pull request #1320 from lioncash/name
cubeb_sink: Correct context name in ListCubebSinkDevices()
This commit is contained in:
		
						commit
						3476ba2aee
					
				@ -198,7 +198,7 @@ std::vector<std::string> ListCubebSinkDevices() {
 | 
				
			|||||||
    std::vector<std::string> device_list;
 | 
					    std::vector<std::string> device_list;
 | 
				
			||||||
    cubeb* ctx;
 | 
					    cubeb* ctx;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (cubeb_init(&ctx, "Citra Device Enumerator", nullptr) != CUBEB_OK) {
 | 
					    if (cubeb_init(&ctx, "yuzu Device Enumerator", nullptr) != CUBEB_OK) {
 | 
				
			||||||
        LOG_CRITICAL(Audio_Sink, "cubeb_init failed");
 | 
					        LOG_CRITICAL(Audio_Sink, "cubeb_init failed");
 | 
				
			||||||
        return {};
 | 
					        return {};
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user