aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/err_f.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-12-25 22:51:38 -0500
committerbunnei <bunneidev@gmail.com>2014-12-25 22:51:38 -0500
commit5d2ee78d8fbb25c8496654026b27f4238040a4da (patch)
treeee6d5ad562aa39696d547eaf83064957becff649 /src/core/hle/service/err_f.cpp
parent9c8ec675d91729b26dd1d7b3bd190008c711a146 (diff)
parent9796bc1fa2518ca4780ce63a543444ce5f8a28e4 (diff)
Merge pull request #330 from purpasmart96/new_srv
More services & small clean ups
Diffstat (limited to 'src/core/hle/service/err_f.cpp')
-rw-r--r--src/core/hle/service/err_f.cpp18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/core/hle/service/err_f.cpp b/src/core/hle/service/err_f.cpp
index 5c7cce841..8c900eabc 100644
--- a/src/core/hle/service/err_f.cpp
+++ b/src/core/hle/service/err_f.cpp
@@ -11,17 +11,15 @@
namespace ERR_F {
- const Interface::FunctionInfo FunctionTable[] = {
- {0x00010800, nullptr, "ThrowFatalError"}
- };
- ////////////////////////////////////////////////////////////////////////////////////////////////////
- // Interface class
+const Interface::FunctionInfo FunctionTable[] = {
+ {0x00010800, nullptr, "ThrowFatalError"}
+};
- Interface::Interface() {
- Register(FunctionTable, ARRAY_SIZE(FunctionTable));
- }
+////////////////////////////////////////////////////////////////////////////////////////////////////
+// Interface class
- Interface::~Interface() {
- }
+Interface::Interface() {
+ Register(FunctionTable, ARRAY_SIZE(FunctionTable));
+}
} // namespace