citra_qt/camera: silent signed array index warning (#4829)
This commit is contained in:
parent
32f832a81f
commit
1c5a55b3cb
2 changed files with 4 additions and 4 deletions
|
@ -241,7 +241,7 @@ void ConfigureCamera::timerEvent(QTimerEvent* event) {
|
|||
|
||||
void ConfigureCamera::SetConfiguration() {
|
||||
int index = GetSelectedCameraIndex();
|
||||
for (int i = 0; i < Implementations.size(); i++) {
|
||||
for (std::size_t i = 0; i < Implementations.size(); i++) {
|
||||
if (Implementations[i] == camera_name[index]) {
|
||||
ui->image_source->setCurrentIndex(i);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue