racing: disable mouse pointing

This commit is contained in:
Zeno Rogue
2019-09-12 22:38:39 +02:00
parent 6e13da5800
commit c313f59c87
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -148,7 +148,8 @@ bool read_ghosts(string seed, int mcode) {
println(hlog, "trying to read ghosts from: ", fname);
fhstream f(fname, "rb");
if(!f.f) return false;
f.get<int> ();
int vernum = f.get<int> ();
if(vernum <= 0xA600) return true; // scores removed due to the possibility of cheating
hread(f, ghostset());
return true;
}