early-access version 3983

main
pineappleEA 2023-11-20 05:16:46 +01:00
parent e21a6bb3bc
commit 8fe516bf12
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access yuzu emulator early access
============= =============
This is the source code for early-access 3982. This is the source code for early-access 3983.
## Legal Notice ## Legal Notice

View File

@ -1563,7 +1563,7 @@ void IHidServer::CreateActiveVibrationDeviceList(HLERequestContext& ctx) {
IPC::ResponseBuilder rb{ctx, 2, 0, 1}; IPC::ResponseBuilder rb{ctx, 2, 0, 1};
rb.Push(ResultSuccess); rb.Push(ResultSuccess);
rb.PushIpcInterface<IActiveVibrationDeviceList>(system, resource_manager); rb.PushIpcInterface<IActiveVibrationDeviceList>(system, GetResourceManager());
} }
void IHidServer::PermitVibration(HLERequestContext& ctx) { void IHidServer::PermitVibration(HLERequestContext& ctx) {

View File

@ -286,7 +286,7 @@ public:
setData(QObject::tr("System Titles"), Qt::DisplayRole); setData(QObject::tr("System Titles"), Qt::DisplayRole);
break; break;
case GameListItemType::CustomDir: { case GameListItemType::CustomDir: {
QString path = QString::fromStdString(game_dir->path); const QString path = QString::fromStdString(game_dir->path);
const QString icon_name = const QString icon_name =
QFileInfo::exists(path) ? QStringLiteral("folder") : QStringLiteral("bad_folder"); QFileInfo::exists(path) ? QStringLiteral("folder") : QStringLiteral("bad_folder");
setData(QIcon::fromTheme(icon_name).pixmap(icon_size).scaled( setData(QIcon::fromTheme(icon_name).pixmap(icon_size).scaled(