diff options
| author | 2016-03-29 22:29:57 +0300 | |
|---|---|---|
| committer | 2016-04-11 13:47:52 +0300 | |
| commit | df0a81621f3c544709ec0f472c3f3c4172b80c92 (patch) | |
| tree | 316f3dc54d3afe58a2f0ba853d8dc1e1bb9287b2 /src/core/hle/shared_page.cpp | |
| parent | Merge pull request #1657 from JayFoxRox/remove-dump-geometry (diff) | |
| download | yuzu-df0a81621f3c544709ec0f472c3f3c4172b80c92.tar.gz yuzu-df0a81621f3c544709ec0f472c3f3c4172b80c92.tar.xz yuzu-df0a81621f3c544709ec0f472c3f3c4172b80c92.zip | |
Set Kernel config "Unknown Value" to 0x1
Diffstat (limited to 'src/core/hle/shared_page.cpp')
| -rw-r--r-- | src/core/hle/shared_page.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/shared_page.cpp b/src/core/hle/shared_page.cpp index 50c5bc01b..2a1caeaac 100644 --- a/src/core/hle/shared_page.cpp +++ b/src/core/hle/shared_page.cpp | |||
| @@ -16,6 +16,9 @@ void Init() { | |||
| 16 | std::memset(&shared_page, 0, sizeof(shared_page)); | 16 | std::memset(&shared_page, 0, sizeof(shared_page)); |
| 17 | 17 | ||
| 18 | shared_page.running_hw = 0x1; // product | 18 | shared_page.running_hw = 0x1; // product |
| 19 | |||
| 20 | // Some games wait until this value becomes 0x1, before asking running_hw | ||
| 21 | shared_page.unknown_value = 0x1; | ||
| 19 | } | 22 | } |
| 20 | 23 | ||
| 21 | } // namespace | 24 | } // namespace |