mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-19 14:58:55 +02:00
[cmake] Allow proper unity builds
Signed-off-by: lizzie <lizzie@eden-emu.dev>
This commit is contained in:
parent
c41209f137
commit
0cc739ed49
76 changed files with 904 additions and 1054 deletions
|
|
@ -1,3 +1,6 @@
|
|||
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
|
|
@ -6,7 +9,6 @@
|
|||
#include "hid_core/hidbus/stubbed.h"
|
||||
|
||||
namespace Service::HID {
|
||||
constexpr u8 DEVICE_ID = 0xFF;
|
||||
|
||||
HidbusStubbed::HidbusStubbed(Core::System& system_, KernelHelpers::ServiceContext& service_context_)
|
||||
: HidbusBase(system_, service_context_) {}
|
||||
|
|
@ -35,7 +37,7 @@ void HidbusStubbed::OnUpdate() {
|
|||
}
|
||||
|
||||
u8 HidbusStubbed::GetDeviceId() const {
|
||||
return DEVICE_ID;
|
||||
return 0xFF;
|
||||
}
|
||||
|
||||
u64 HidbusStubbed::GetReply(std::span<u8> out_data) const {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue