summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2020-08-19 17:21:38 +0200
committerJosJuice <josjuice@gmail.com>2020-08-19 17:21:38 +0200
commitfc6c1931fa09513388f35507b724bc378a0758e1 (patch)
tree2d7b2ffb2565c9fcee7e105d5f76f967b68123f7 /Source/Core/DiscIO
parent5cad82137d496328ce8e3ea6e5edf9dac524a11a (diff)
VolumeVerifier: Adjust problem descriptions for new netplay check
The new hash check catches essentially all desync problems that VolumeVerifier can catch, so from the user's perspective, such problems will result in Dolphin refusing to start the game on netplay rather than actually getting a desync.
Diffstat (limited to 'Source/Core/DiscIO')
-rw-r--r--Source/Core/DiscIO/VolumeVerifier.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/Core/DiscIO/VolumeVerifier.cpp b/Source/Core/DiscIO/VolumeVerifier.cpp
index c1a2bcbd90..e50aa4fd72 100644
--- a/Source/Core/DiscIO/VolumeVerifier.cpp
+++ b/Source/Core/DiscIO/VolumeVerifier.cpp
@@ -481,8 +481,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."));
}
}
@@ -790,10 +790,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
{