summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/fgm/fgm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/fgm/fgm.cpp')
-rw-r--r--src/core/hle/service/fgm/fgm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/fgm/fgm.cpp b/src/core/hle/service/fgm/fgm.cpp
index 566fbf924..e461274c1 100644
--- a/src/core/hle/service/fgm/fgm.cpp
+++ b/src/core/hle/service/fgm/fgm.cpp
@@ -42,11 +42,11 @@ public:
private:
void Initialize(Kernel::HLERequestContext& ctx) {
+ LOG_DEBUG(Service_FGM, "called");
+
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
rb.Push(RESULT_SUCCESS);
rb.PushIpcInterface<IRequest>();
-
- LOG_DEBUG(Service_FGM, "called");
}
};