summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2015-07-29 12:12:39 -0400
committerGravatar Lioncash2015-07-29 12:12:39 -0400
commit12a9e8502c73a80efe0bce75d5a6b5e4be59d5e2 (patch)
tree77928d4e8da242f0fadf5f150e8d86122322f69e /src
parentMerge pull request #1009 from lioncash/table (diff)
downloadyuzu-12a9e8502c73a80efe0bce75d5a6b5e4be59d5e2.tar.gz
yuzu-12a9e8502c73a80efe0bce75d5a6b5e4be59d5e2.tar.xz
yuzu-12a9e8502c73a80efe0bce75d5a6b5e4be59d5e2.zip
core: Fix missing prototype warnings
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/am/am.cpp1
-rw-r--r--src/core/hw/y2r.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index 7332478fb..64f3bc7e9 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -5,6 +5,7 @@
5#include "common/logging/log.h" 5#include "common/logging/log.h"
6 6
7#include "core/hle/service/service.h" 7#include "core/hle/service/service.h"
8#include "core/hle/service/am/am.h"
8#include "core/hle/service/am/am_app.h" 9#include "core/hle/service/am/am_app.h"
9#include "core/hle/service/am/am_net.h" 10#include "core/hle/service/am/am_net.h"
10#include "core/hle/service/am/am_sys.h" 11#include "core/hle/service/am/am_sys.h"
diff --git a/src/core/hw/y2r.cpp b/src/core/hw/y2r.cpp
index f80e26ecd..082a4db82 100644
--- a/src/core/hw/y2r.cpp
+++ b/src/core/hw/y2r.cpp
@@ -14,6 +14,7 @@
14#include "common/vector_math.h" 14#include "common/vector_math.h"
15 15
16#include "core/hle/service/y2r_u.h" 16#include "core/hle/service/y2r_u.h"
17#include "core/hw/y2r.h"
17#include "core/memory.h" 18#include "core/memory.h"
18 19
19namespace HW { 20namespace HW {