diff options
| author | JMC47 <JMC4789@gmail.com> | 2020-09-06 17:14:08 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-06 17:14:08 -0400 |
| commit | e7e51756068a450b6e920c7783c81d7df4d2d133 (patch) | |
| tree | 94f0bfe833986f8d35f0d2a40842807601f53b9f /Source/Core/DiscIO/VolumeVerifier.cpp | |
| parent | 344fdabf23c048b81b8e87008a7a16837d180f55 (diff) | |
| parent | fc6c1931fa09513388f35507b724bc378a0758e1 (diff) | |
Merge pull request #8861 from JosJuice/netplay-hash
Make netplay's "same game" check more robust
Diffstat (limited to 'Source/Core/DiscIO/VolumeVerifier.cpp')
| -rw-r--r-- | Source/Core/DiscIO/VolumeVerifier.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/Core/DiscIO/VolumeVerifier.cpp b/Source/Core/DiscIO/VolumeVerifier.cpp index 19bf2036cf..04b285cbc4 100644 --- a/Source/Core/DiscIO/VolumeVerifier.cpp +++ b/Source/Core/DiscIO/VolumeVerifier.cpp @@ -479,8 +479,8 @@ std::vector<Partition> VolumeVerifier::CheckPartitions() AddProblem(Severity::Low, Common::GetStringT( "The data partition is not at its normal position. This will affect the " - "emulated loading times. When using NetPlay or sending input recordings to " - "other people, you will experience desyncs if anyone is using a good dump.")); + "emulated loading times. You will be unable to share input recordings and use " + "NetPlay with anyone who is using a good dump.")); } } @@ -783,10 +783,10 @@ void VolumeVerifier::CheckDiscSize(const std::vector<Partition>& partitions) { AddProblem( Severity::Low, - Common::GetStringT("This disc image has an unusual size. This will likely make the " - "emulated loading times longer. When using NetPlay or sending " - "input recordings to other people, you will likely experience " - "desyncs if anyone is using a good dump.")); + Common::GetStringT( + "This disc image has an unusual size. This will likely make the emulated " + "loading times longer. You will likely be unable to share input recordings " + "and use NetPlay with anyone who is using a good dump.")); } else { |
