1
0
Fork 0
forked from eden-emu/eden

Merge pull request #1168 from lioncash/header

hid: Move core include to cpp file
This commit is contained in:
bunnei 2018-08-27 15:42:52 -04:00 committed by GitHub
commit 34a447d24e
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -17,6 +17,7 @@
#include "core/hle/service/hid/irs.h"
#include "core/hle/service/hid/xcd.h"
#include "core/hle/service/service.h"
#include "core/settings.h"
namespace Service::HID {

View file

@ -4,8 +4,10 @@
#pragma once
#include <array>
#include "common/bit_field.h"
#include "common/common_types.h"
#include "core/hle/service/service.h"
#include "core/settings.h"
namespace Service::HID {