diff options
| -rw-r--r-- | src/yuzu/configuration/configure_graphics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/configuration/configure_graphics.cpp b/src/yuzu/configuration/configure_graphics.cpp index 304625cd7..e8c8f5f20 100644 --- a/src/yuzu/configuration/configure_graphics.cpp +++ b/src/yuzu/configuration/configure_graphics.cpp | |||
| @@ -112,7 +112,7 @@ void ConfigureGraphics::UpdateDeviceComboBox() { | |||
| 112 | enabled = false; | 112 | enabled = false; |
| 113 | break; | 113 | break; |
| 114 | case Settings::RendererBackend::Vulkan: | 114 | case Settings::RendererBackend::Vulkan: |
| 115 | for (const auto device : vulkan_devices) { | 115 | for (const auto& device : vulkan_devices) { |
| 116 | ui->device->addItem(device); | 116 | ui->device->addItem(device); |
| 117 | } | 117 | } |
| 118 | ui->device->setCurrentIndex(vulkan_device); | 118 | ui->device->setCurrentIndex(vulkan_device); |