mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-27 18:57:53 -05:00
Port #4182 from Citra: "Prefix all size_t with std::"
This commit is contained in:
@ -89,7 +89,7 @@ void ConfigureGameList::InitializeIconSizeComboBox() {
|
||||
}
|
||||
|
||||
void ConfigureGameList::InitializeRowComboBoxes() {
|
||||
for (size_t i = 0; i < row_text_names.size(); ++i) {
|
||||
for (std::size_t i = 0; i < row_text_names.size(); ++i) {
|
||||
ui->row_1_text_combobox->addItem(row_text_names[i], QVariant::fromValue(i));
|
||||
ui->row_2_text_combobox->addItem(row_text_names[i], QVariant::fromValue(i));
|
||||
}
|
||||
|
Reference in New Issue
Block a user