settings: Enable FIFO relaxed

Not entirely sure if we need this, but there's also no reason not to
support it.

settings: Give VSyncMode values
This commit is contained in:
lat9nq 2023-05-01 20:22:37 -04:00
parent 6b973c5986
commit 2528cf7c54
2 changed files with 10 additions and 7 deletions

View file

@ -89,10 +89,12 @@ static constexpr const char* TranslateVSyncMode(Settings::VSyncMode mode) {
switch (mode) {
case Settings::VSyncMode::Immediate:
return "Immediate";
case Settings::VSyncMode::FIFO:
return "FIFO";
case Settings::VSyncMode::Mailbox:
return "Mailbox";
case Settings::VSyncMode::FIFO:
return "FIFO";
case Settings::VSyncMode::FIFORelaxed:
return "FIFO Relaxed";
}
return "Unknown";
}