diff options
| author | 2021-08-13 12:39:14 +0200 | |
|---|---|---|
| committer | 2021-08-13 12:39:14 +0200 | |
| commit | 068c66672dd8314693f5f5ee29941dce1973b405 (patch) | |
| tree | 15fe753465c636c720d15141c83fd62f835ef0d6 /src | |
| parent | network: don't use reinterpret_cast in GetAvailableNetworkInterfaces (diff) | |
| download | yuzu-068c66672dd8314693f5f5ee29941dce1973b405.tar.gz yuzu-068c66672dd8314693f5f5ee29941dce1973b405.tar.xz yuzu-068c66672dd8314693f5f5ee29941dce1973b405.zip | |
configuration: fix mingw-w64 build
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/configuration/configure_network.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/configuration/configure_network.cpp b/src/yuzu/configuration/configure_network.cpp index e6924883c..ae22f1018 100644 --- a/src/yuzu/configuration/configure_network.cpp +++ b/src/yuzu/configuration/configure_network.cpp | |||
| @@ -50,8 +50,8 @@ ConfigureNetwork::ConfigureNetwork(QWidget* parent) | |||
| 50 | #endif | 50 | #endif |
| 51 | 51 | ||
| 52 | ui->network_interface->addItem(tr("None")); | 52 | ui->network_interface->addItem(tr("None")); |
| 53 | for (const auto& interface : Network::GetAvailableNetworkInterfaces()) { | 53 | for (const auto& iface : Network::GetAvailableNetworkInterfaces()) { |
| 54 | ui->network_interface->addItem(QString::fromStdString(interface.name)); | 54 | ui->network_interface->addItem(QString::fromStdString(iface.name)); |
| 55 | } | 55 | } |
| 56 | 56 | ||
| 57 | connect(ui->bcat_source, QOverload<int>::of(&QComboBox::currentIndexChanged), this, | 57 | connect(ui->bcat_source, QOverload<int>::of(&QComboBox::currentIndexChanged), this, |