mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-01-18 02:52:10 +01:00
[hud] Add DXVK_HUD=full option
Enables all HUD elements at once. Close #842.
This commit is contained in:
parent
22172b2afc
commit
d0ee7f54bf
@ -26,6 +26,9 @@ namespace dxvk::hud {
|
||||
this->elements.set(
|
||||
HudElement::DeviceInfo,
|
||||
HudElement::Framerate);
|
||||
} else if (configStr == "full") {
|
||||
for (auto pair : g_hudElements)
|
||||
this->elements.set(pair.second);
|
||||
} else {
|
||||
std::string::size_type pos = 0;
|
||||
std::string::size_type end = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user