early-access version 1645
This commit is contained in:
parent
2e67897dda
commit
bc65fcb378
4 changed files with 7 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 1644.
|
This is the source code for early-access 1645.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ void Controller_Gesture::OnUpdate(const Core::Timing::CoreTiming& core_timing, u
|
||||||
shared_memory.header.timestamp = core_timing.GetCPUTicks();
|
shared_memory.header.timestamp = core_timing.GetCPUTicks();
|
||||||
shared_memory.header.total_entry_count = 17;
|
shared_memory.header.total_entry_count = 17;
|
||||||
|
|
||||||
if (!IsControllerActivated()) {
|
if (!IsControllerActivated() || !Settings::values.touchscreen.enabled) {
|
||||||
shared_memory.header.entry_count = 0;
|
shared_memory.header.entry_count = 0;
|
||||||
shared_memory.header.last_entry_index = 0;
|
shared_memory.header.last_entry_index = 0;
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -33,7 +33,7 @@ void Controller_Touchscreen::OnUpdate(const Core::Timing::CoreTiming& core_timin
|
||||||
shared_memory.header.timestamp = core_timing.GetCPUTicks();
|
shared_memory.header.timestamp = core_timing.GetCPUTicks();
|
||||||
shared_memory.header.total_entry_count = 17;
|
shared_memory.header.total_entry_count = 17;
|
||||||
|
|
||||||
if (!IsControllerActivated()) {
|
if (!IsControllerActivated() || !Settings::values.touchscreen.enabled) {
|
||||||
shared_memory.header.entry_count = 0;
|
shared_memory.header.entry_count = 0;
|
||||||
shared_memory.header.last_entry_index = 0;
|
shared_memory.header.last_entry_index = 0;
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -622,7 +622,8 @@ void GameList::AddPermDirPopup(QMenu& context_menu, QModelIndex selected) {
|
||||||
// move the treeview items
|
// move the treeview items
|
||||||
QList<QStandardItem*> item = item_model->takeRow(row);
|
QList<QStandardItem*> item = item_model->takeRow(row);
|
||||||
item_model->invisibleRootItem()->insertRow(row - 1, item);
|
item_model->invisibleRootItem()->insertRow(row - 1, item);
|
||||||
tree_view->setExpanded(selected, UISettings::values.game_dirs[game_dir_index].expanded);
|
tree_view->setExpanded(selected.sibling(row - 1, 0),
|
||||||
|
UISettings::values.game_dirs[other_index].expanded);
|
||||||
});
|
});
|
||||||
|
|
||||||
connect(move_down, &QAction::triggered, [this, selected, row, game_dir_index] {
|
connect(move_down, &QAction::triggered, [this, selected, row, game_dir_index] {
|
||||||
|
@ -637,7 +638,8 @@ void GameList::AddPermDirPopup(QMenu& context_menu, QModelIndex selected) {
|
||||||
// move the treeview items
|
// move the treeview items
|
||||||
const QList<QStandardItem*> item = item_model->takeRow(row);
|
const QList<QStandardItem*> item = item_model->takeRow(row);
|
||||||
item_model->invisibleRootItem()->insertRow(row + 1, item);
|
item_model->invisibleRootItem()->insertRow(row + 1, item);
|
||||||
tree_view->setExpanded(selected, UISettings::values.game_dirs[game_dir_index].expanded);
|
tree_view->setExpanded(selected.sibling(row + 1, 0),
|
||||||
|
UISettings::values.game_dirs[other_index].expanded);
|
||||||
});
|
});
|
||||||
|
|
||||||
connect(open_directory_location, &QAction::triggered, [this, game_dir_index] {
|
connect(open_directory_location, &QAction::triggered, [this, game_dir_index] {
|
||||||
|
|
Loading…
Reference in a new issue