diff options
| author | bunnei <bunneidev@gmail.com> | 2018-09-30 15:32:27 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-30 15:32:27 -0400 |
| commit | 5e2f23e2b185475c3ce7ae1750ec14daefcd3e08 (patch) | |
| tree | ac2c341c94976552acd507359e8853105193d288 /src/core/hle/service/fatal/fatal.cpp | |
| parent | f8e46d335fa6f6e73f531954951fa5be1b46765f (diff) | |
| parent | 541c5507538137b9cc5fd0579221aaecf59a89b1 (diff) | |
Merge pull request #1417 from lioncash/context
svc: Implement svcGetThreadContext
Diffstat (limited to 'src/core/hle/service/fatal/fatal.cpp')
| -rw-r--r-- | src/core/hle/service/fatal/fatal.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/fatal/fatal.cpp b/src/core/hle/service/fatal/fatal.cpp index 2212b2cdd..2f15ac2a6 100644 --- a/src/core/hle/service/fatal/fatal.cpp +++ b/src/core/hle/service/fatal/fatal.cpp @@ -51,7 +51,7 @@ enum class FatalType : u32 { }; static void GenerateErrorReport(ResultCode error_code, const FatalInfo& info) { - const auto title_id = Core::CurrentProcess()->program_id; + const auto title_id = Core::CurrentProcess()->GetTitleID(); std::string crash_report = fmt::format("Yuzu {}-{} crash report\n" "Title ID: {:016x}\n" |
