diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2022-09-23 14:57:55 +0200 |
|---|---|---|
| committer | Admiral H. Curtiss <pikachu025@gmail.com> | 2022-09-23 14:57:55 +0200 |
| commit | 4cb8914ad348cc64ca66ff4158543bcccef1646c (patch) | |
| tree | 0bbbcb98da57207dbefab784150ac2630dc755f3 /Source/Core/DiscIO | |
| parent | b314e2a313aa2c25b4a10508103fdf96b73d3c51 (diff) | |
VolumeVerifier: Add missing assignment to summary_text.
Diffstat (limited to 'Source/Core/DiscIO')
| -rw-r--r-- | Source/Core/DiscIO/VolumeVerifier.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/Core/DiscIO/VolumeVerifier.cpp b/Source/Core/DiscIO/VolumeVerifier.cpp index 109b4c2f64..a2810b5919 100644 --- a/Source/Core/DiscIO/VolumeVerifier.cpp +++ b/Source/Core/DiscIO/VolumeVerifier.cpp @@ -1432,8 +1432,9 @@ void VolumeVerifier::Finish() } else { - Common::GetStringT("Problems with low severity were found. They will most " - "likely not prevent the game from running."); + m_result.summary_text = + Common::GetStringT("Problems with low severity were found. They will most " + "likely not prevent the game from running."); } break; case Severity::Medium: |
