aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei <bunneidev@gmail.com>2014-07-22 23:36:50 -0400
committerGravatar bunnei <bunneidev@gmail.com>2014-08-05 23:58:00 -0400
commit36fd1c169e674619108e68c65e71acde636d0791 (patch)
treeb7efba71384d392776b2dda9d2eb6bb962254f23 /src
parent4e9f305ed214ef0fbffd83042c86f41cd233ec3b (diff)
GSP: Added reinitialization of other state objects.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/gsp.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/service/gsp.cpp b/src/core/hle/service/gsp.cpp
index 8a3011e3..1b74f488 100644
--- a/src/core/hle/service/gsp.cpp
+++ b/src/core/hle/service/gsp.cpp
@@ -302,7 +302,10 @@ const Interface::FunctionInfo FunctionTable[] = {
Interface::Interface() {
Register(FunctionTable, ARRAY_SIZE(FunctionTable));
+
+ g_event = 0;
g_shared_memory = 0;
+ g_thread_id = 1;
}
Interface::~Interface() {