2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-18 20:45:27 +00:00

Lots of Windows fixes; add D3D12; more boo decoupling

This commit is contained in:
2022-02-22 00:53:57 -05:00
parent 54330e43b6
commit c33674b9ab
55 changed files with 380 additions and 261 deletions

View File

@@ -32,9 +32,9 @@ CGuiTableGroup::CGuiTableGroup(const CGuiWidgetParms& parms, int elementCount, i
, xd0_selectWraparound(selectWraparound) {}
void CGuiTableGroup::ProcessUserInput(const CFinalInput& input) {
if (input.PA() || input.PSpecialKey(boo::ESpecialKey::Enter)) {
if (input.PA() || input.PSpecialKey(aurora::SpecialKey::Enter)) {
DoAdvance();
} else if (input.PB() || input.PSpecialKey(boo::ESpecialKey::Esc)) {
} else if (input.PB() || input.PSpecialKey(aurora::SpecialKey::Esc)) {
DoCancel();
} else {
bool decrement;