Merge pull request #767 from wheremyfoodat/cpp

Initial support for CirclePad Pro/New 3DS controls
This commit is contained in:
wheremyfoodat
2025-07-03 03:39:12 +03:00
committed by GitHub
29 changed files with 872 additions and 252 deletions

View File

@@ -23,7 +23,7 @@
#include "services/gsp_lcd.hpp"
#include "services/hid.hpp"
#include "services/http.hpp"
#include "services/ir_user.hpp"
#include "services/ir/ir_user.hpp"
#include "services/ldr_ro.hpp"
#include "services/mcu/mcu_hwc.hpp"
#include "services/mic.hpp"
@@ -115,4 +115,5 @@ class ServiceManager {
NFCService& getNFC() { return nfc; }
DSPService& getDSP() { return dsp; }
Y2RService& getY2R() { return y2r; }
IRUserService& getIRUser() { return ir_user; }
};