summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2014-07-22 23:36:50 -0400
committerGravatar bunnei2014-08-05 23:58:00 -0400
commit36fd1c169e674619108e68c65e71acde636d0791 (patch)
treeb7efba71384d392776b2dda9d2eb6bb962254f23 /src
parentGSP: Removed dumb GX prefixes to functions/structs in GSP namespace. (diff)
downloadyuzu-36fd1c169e674619108e68c65e71acde636d0791.tar.gz
yuzu-36fd1c169e674619108e68c65e71acde636d0791.tar.xz
yuzu-36fd1c169e674619108e68c65e71acde636d0791.zip
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 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[] = {
302 302
303Interface::Interface() { 303Interface::Interface() {
304 Register(FunctionTable, ARRAY_SIZE(FunctionTable)); 304 Register(FunctionTable, ARRAY_SIZE(FunctionTable));
305
306 g_event = 0;
305 g_shared_memory = 0; 307 g_shared_memory = 0;
308 g_thread_id = 1;
306} 309}
307 310
308Interface::~Interface() { 311Interface::~Interface() {