DolphinQt: Add IRPassthrough indicator.

This commit is contained in:
Jordan Woyak
2024-03-10 23:25:44 -05:00
parent 72bcdadc16
commit 62caa24d40
3 changed files with 50 additions and 0 deletions

View File

@ -95,6 +95,11 @@ QGroupBox* MappingWidget::CreateGroupBox(const QString& name, ControllerEmu::Con
indicator = new AnalogStickIndicator(*static_cast<ControllerEmu::ReshapableInput*>(group));
break;
case ControllerEmu::GroupType::IRPassthrough:
indicator =
new IRPassthroughMappingIndicator(*static_cast<ControllerEmu::IRPassthrough*>(group));
break;
default:
break;
}