forked from eden-emu/eden
fix windows
Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
parent
ae31504772
commit
a572ee58d3
1 changed files with 5 additions and 4 deletions
|
@ -113,6 +113,7 @@ static FileSys::VirtualFile VfsDirectoryCreateFileWrapper(const FileSys::Virtual
|
||||||
#include "common/scm_rev.h"
|
#include "common/scm_rev.h"
|
||||||
#include "common/scope_exit.h"
|
#include "common/scope_exit.h"
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
#include "core/core_timing.h"
|
||||||
#include "common/windows/timer_resolution.h"
|
#include "common/windows/timer_resolution.h"
|
||||||
#endif
|
#endif
|
||||||
#ifdef ARCHITECTURE_x86_64
|
#ifdef ARCHITECTURE_x86_64
|
||||||
|
@ -1470,7 +1471,7 @@ void GMainWindow::InitializeHotkeys() {
|
||||||
connect_shortcut(QStringLiteral("Toggle Framerate Limit"), [] {
|
connect_shortcut(QStringLiteral("Toggle Framerate Limit"), [] {
|
||||||
Settings::values.use_speed_limit.SetValue(!Settings::values.use_speed_limit.GetValue());
|
Settings::values.use_speed_limit.SetValue(!Settings::values.use_speed_limit.GetValue());
|
||||||
});
|
});
|
||||||
connect_shortcut(QStringLiteral("Toggle Renderdoc Capture"), [this] {
|
connect_shortcut(QStringLiteral("Toggle Renderdoc Capture"), [] {
|
||||||
if (Settings::values.enable_renderdoc_hotkey) {
|
if (Settings::values.enable_renderdoc_hotkey) {
|
||||||
QtCommon::system->GetRenderdocAPI().ToggleCapture();
|
QtCommon::system->GetRenderdocAPI().ToggleCapture();
|
||||||
}
|
}
|
||||||
|
@ -2140,7 +2141,7 @@ void GMainWindow::BootGame(const QString& filename, Service::AM::FrontendAppletP
|
||||||
std::string title_version;
|
std::string title_version;
|
||||||
const auto res = QtCommon::system->GetGameName(title_name);
|
const auto res = QtCommon::system->GetGameName(title_name);
|
||||||
|
|
||||||
const auto metadata = [this, title_id] {
|
const auto metadata = [title_id] {
|
||||||
const FileSys::PatchManager pm(title_id, QtCommon::system->GetFileSystemController(),
|
const FileSys::PatchManager pm(title_id, QtCommon::system->GetFileSystemController(),
|
||||||
QtCommon::system->GetContentProvider());
|
QtCommon::system->GetContentProvider());
|
||||||
return pm.GetControlMetadata();
|
return pm.GetControlMetadata();
|
||||||
|
@ -2371,7 +2372,7 @@ void GMainWindow::OnGameListOpenFolder(u64 program_id, GameListOpenTarget target
|
||||||
std::filesystem::path path;
|
std::filesystem::path path;
|
||||||
QString open_target;
|
QString open_target;
|
||||||
|
|
||||||
const auto [user_save_size, device_save_size] = [this, &game_path, &program_id] {
|
const auto [user_save_size, device_save_size] = [&game_path, &program_id] {
|
||||||
const FileSys::PatchManager pm{program_id, QtCommon::system->GetFileSystemController(),
|
const FileSys::PatchManager pm{program_id, QtCommon::system->GetFileSystemController(),
|
||||||
QtCommon::system->GetContentProvider()};
|
QtCommon::system->GetContentProvider()};
|
||||||
const auto control = pm.GetControlMetadata().first;
|
const auto control = pm.GetControlMetadata().first;
|
||||||
|
@ -2958,7 +2959,7 @@ void GMainWindow::OnMenuInstallToNAND() {
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
future = QtConcurrent::run([this, &file, progress_callback] {
|
future = QtConcurrent::run([&file, progress_callback] {
|
||||||
return ContentManager::InstallNSP(*QtCommon::system, *QtCommon::vfs, file.toStdString(),
|
return ContentManager::InstallNSP(*QtCommon::system, *QtCommon::vfs, file.toStdString(),
|
||||||
progress_callback);
|
progress_callback);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue