summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-12-16 04:52:35 +0100
committerbunnei <bunneidev@gmail.com>2014-12-16 04:52:35 +0100
commitcdfa7157eb1199056a5ccb8913fe4e89d3e30f68 (patch)
treeeffcafa78b587e5994d2c282a32195b6988d156c /src/core
parentMerge pull request #285 from lioncash/uxtab16 (diff)
parentComment out empty arrays causing compile errors in MSVC (diff)
downloadyuzu-cdfa7157eb1199056a5ccb8913fe4e89d3e30f68.tar
yuzu-cdfa7157eb1199056a5ccb8913fe4e89d3e30f68.tar.gz
yuzu-cdfa7157eb1199056a5ccb8913fe4e89d3e30f68.tar.bz2
yuzu-cdfa7157eb1199056a5ccb8913fe4e89d3e30f68.tar.lz
yuzu-cdfa7157eb1199056a5ccb8913fe4e89d3e30f68.tar.xz
yuzu-cdfa7157eb1199056a5ccb8913fe4e89d3e30f68.tar.zst
yuzu-cdfa7157eb1199056a5ccb8913fe4e89d3e30f68.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/am_app.cpp7
-rw-r--r--src/core/hle/service/cecd_u.cpp7
2 files changed, 8 insertions, 6 deletions
diff --git a/src/core/hle/service/am_app.cpp b/src/core/hle/service/am_app.cpp
index 05c34832b..b8b06418c 100644
--- a/src/core/hle/service/am_app.cpp
+++ b/src/core/hle/service/am_app.cpp
@@ -11,13 +11,14 @@
namespace AM_APP {
-const Interface::FunctionInfo FunctionTable[] = {
-};
+// Empty arrays are illegal -- commented out until an entry is added.
+//const Interface::FunctionInfo FunctionTable[] = { };
+
////////////////////////////////////////////////////////////////////////////////////////////////////
// Interface class
Interface::Interface() {
- Register(FunctionTable, ARRAY_SIZE(FunctionTable));
+ //Register(FunctionTable, ARRAY_SIZE(FunctionTable));
}
} // namespace
diff --git a/src/core/hle/service/cecd_u.cpp b/src/core/hle/service/cecd_u.cpp
index d72f1da3f..25d903516 100644
--- a/src/core/hle/service/cecd_u.cpp
+++ b/src/core/hle/service/cecd_u.cpp
@@ -11,13 +11,14 @@
namespace CECD_U {
-const Interface::FunctionInfo FunctionTable[] = {
-};
+// Empty arrays are illegal -- commented out until an entry is added.
+//const Interface::FunctionInfo FunctionTable[] = { };
+
////////////////////////////////////////////////////////////////////////////////////////////////////
// Interface class
Interface::Interface() {
- Register(FunctionTable, ARRAY_SIZE(FunctionTable));
+ //Register(FunctionTable, ARRAY_SIZE(FunctionTable));
}
} // namespace