mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-04 11:45:18 +02:00
Optimize the resampler a little. Update native with new ability to not force 44khz so we actually get any use.
This causes Nexus 4 and Nexus 9 to end up on the fast path, greatly decreasing audio latency! This also removes the "atomic audio" setting as the new audio code is lock-free always.
This commit is contained in:
+3
-1
@@ -219,8 +219,10 @@ std::string NativeQueryConfig(std::string query) {
|
||||
|
||||
sprintf(temp, "%i", scale);
|
||||
return std::string(temp);
|
||||
} else if (query == "force44khz") {
|
||||
return std::string("0");
|
||||
} else {
|
||||
return std::string("");
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user