diff options
| author | 2014-07-22 23:36:50 -0400 | |
|---|---|---|
| committer | 2014-08-05 23:58:00 -0400 | |
| commit | 36fd1c169e674619108e68c65e71acde636d0791 (patch) | |
| tree | b7efba71384d392776b2dda9d2eb6bb962254f23 /src | |
| parent | GSP: Removed dumb GX prefixes to functions/structs in GSP namespace. (diff) | |
| download | yuzu-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.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[] = { | |||
| 302 | 302 | ||
| 303 | Interface::Interface() { | 303 | Interface::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 | ||
| 308 | Interface::~Interface() { | 311 | Interface::~Interface() { |