diff options
author | bunnei <bunneidev@gmail.com> | 2014-07-22 23:36:50 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-08-05 23:58:00 -0400 |
commit | 36fd1c169e674619108e68c65e71acde636d0791 (patch) | |
tree | b7efba71384d392776b2dda9d2eb6bb962254f23 | |
parent | 4e9f305ed214ef0fbffd83042c86f41cd233ec3b (diff) |
GSP: Added reinitialization of other state objects.
-rw-r--r-- | src/core/hle/service/gsp.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/service/gsp.cpp b/src/core/hle/service/gsp.cpp index 8a3011e34..1b74f4889 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() { |