Add touch input support, add fast scrolling support for coverflow display mode, fix use after free bug in banner list mode

This commit is contained in:
Gericom
2026-04-04 19:24:39 +02:00
parent 21a8790ebc
commit 97762b14d3
119 changed files with 2251 additions and 762 deletions

View File

@@ -15,7 +15,9 @@ enum class InputKey : u16
L = 1 << 9,
X = 1 << 10,
Y = 1 << 11,
Debug = 1 << 13
Debug = 1 << 13,
Touch = 1 << 14,
Lid = 1 << 15
};
inline InputKey operator&(InputKey lhs, InputKey rhs)