mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-07-10 01:54:46 -06:00
Merge branch 'master' into vk_test
This commit is contained in:
commit
c3a9aa43b5
@ -294,6 +294,7 @@ namespace np
|
||||
MatchingRoomStatus_to_SceNpMatchingRoomStatus(edata, *update_info, room_status);
|
||||
np_memory.shrink_allocation(edata.addr(), edata.size());
|
||||
|
||||
rpcn_log.notice("Received GUI notification: %s", name);
|
||||
extra_nps::print_SceNpMatchingRoomStatus(room_status);
|
||||
|
||||
switch (notification_type)
|
||||
|
||||
@ -943,10 +943,10 @@ u32 keyboard_pad_handler::GetKeyCode(const QString& keyName)
|
||||
if (keyName == "Meta") return Qt::Key_Meta;
|
||||
#ifdef __APPLE__
|
||||
// QKeySequence doesn't work properly for the arrow keys on macOS
|
||||
if (keyName == "Num←") return Qt::Key_Left;
|
||||
if (keyName == "Num↑") return Qt::Key_Up;
|
||||
if (keyName == "Num→") return Qt::Key_Right;
|
||||
if (keyName == "Num↓") return Qt::Key_Down;
|
||||
if (keyName == "Num←" || keyName == "←") return Qt::Key_Left;
|
||||
if (keyName == "Num↑" || keyName == "↑") return Qt::Key_Up;
|
||||
if (keyName == "Num→" || keyName == "→") return Qt::Key_Right;
|
||||
if (keyName == "Num↓" || keyName == "↓") return Qt::Key_Down;
|
||||
#endif
|
||||
|
||||
const QKeySequence seq(keyName);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user