зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1370598 - Don't cap latency at 512 frames on Macs that are not Macbooks or Macbook Air. r=achronop
MozReview-Commit-ID: LEquEPECH9P --HG-- extra : rebase_source : a0cb2a435b6b211ebb432b1f13cf8bf5878906be
This commit is contained in:
Родитель
08edaf7d34
Коммит
b73774d1b2
|
@ -574,7 +574,7 @@ bool IsMacbookOrMacbookAir()
|
|||
char* substring = strstr(model.get(), "MacBook");
|
||||
if (substring) {
|
||||
const size_t offset = strlen("MacBook");
|
||||
if (strncmp(model.get() + offset, "Air", len - offset) ||
|
||||
if (!strncmp(model.get() + offset, "Air", 3) ||
|
||||
isdigit(model[offset + 1])) {
|
||||
return true;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче