uDraw emulation

This commit is contained in:
Florin9doi 2022-11-18 10:15:50 +02:00 committed by Megamouse
parent 40eda1b972
commit 463826bf13
14 changed files with 353 additions and 4 deletions

View file

@ -1088,6 +1088,13 @@ QString emu_settings::GetLocalizedSetting(const QString& original, emu_settings_
case ghltar_handler::two_controllers: return tr("2 controllers", "GHLtar handler");
}
break;
case emu_settings_type::GameTablet:
switch (static_cast<gametablet_handler>(index))
{
case gametablet_handler::disabled: return tr("Disabled", "GameTablet handler");
case gametablet_handler::enabled: return tr("Enabled", "GameTablet handler");
}
break;
case emu_settings_type::InternetStatus:
switch (static_cast<np_internet_status>(index))
{