configure_graphics: Prevent unnecessary string copies in UpdateDeviceComboBox()

Unlikely to impact performance at all, but this is essentially a "free"
transformation, so why not?
This commit is contained in:
Lioncash 2020-07-06 09:03:00 -04:00
parent 52882a93a5
commit be06b21f7b
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ void ConfigureGraphics::UpdateDeviceComboBox() {
enabled = false; enabled = false;
break; break;
case Settings::RendererBackend::Vulkan: case Settings::RendererBackend::Vulkan:
for (const auto device : vulkan_devices) { for (const auto& device : vulkan_devices) {
ui->device->addItem(device); ui->device->addItem(device);
} }
ui->device->setCurrentIndex(vulkan_device); ui->device->setCurrentIndex(vulkan_device);