configure_ui: Silence MSVC warning
This commit is contained in:
parent
6fe51b48e9
commit
e28b936950
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ static void PopulateResolutionComboBox(QComboBox* screenshot_height, QWidget* pa
|
||||||
static u32 ScreenshotDimensionToInt(const QString& height) {
|
static u32 ScreenshotDimensionToInt(const QString& height) {
|
||||||
try {
|
try {
|
||||||
return std::stoi(height.toStdString());
|
return std::stoi(height.toStdString());
|
||||||
} catch (std::invalid_argument& e) {
|
} catch (std::invalid_argument&) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue