summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am_app.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/am_app.cpp')
-rw-r--r--src/core/hle/service/am_app.cpp7
1 files changed, 4 insertions, 3 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