summary refs log tree commit diff
path: root/pkgs/games/osu-lazer/bypass-tamper-detection.patch
blob: 576f83a96c5772cac5f22d1d90dd4393ec599163 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
diff --git a/osu.Game/OsuGameBase.cs b/osu.Game/OsuGameBase.cs
index 98f60d52d..a27ce47ca 100644
--- a/osu.Game/OsuGameBase.cs
+++ b/osu.Game/OsuGameBase.cs
@@ -135,17 +135,7 @@ public OsuGameBase()
         [BackgroundDependencyLoader]
         private void load()
         {
-            try
-            {
-                using (var str = File.OpenRead(typeof(OsuGameBase).Assembly.Location))
-                    VersionHash = str.ComputeMD5Hash();
-            }
-            catch
-            {
-                // special case for android builds, which can't read DLLs from a packed apk.
-                // should eventually be handled in a better way.
-                VersionHash = $"{Version}-{RuntimeInfo.OS}".ComputeMD5Hash();
-            }
+            VersionHash = "253aa3a3a356a71295bf5b018cd4fda1";
 
             Resources.AddStore(new DllResourceStore(OsuResources.ResourceAssembly));