Browse Source
Merge pull request #1168 from lioncash/header
hid: Move core include to cpp file
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
4 additions and
1 deletions
-
src/core/hle/service/hid/hid.cpp
-
src/core/hle/service/hid/hid.h
|
|
|
@ -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 { |
|
|
|
|
|
|
|
|
|
|
|
@ -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 { |
|
|
|
|
|
|
|
|