1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-04-03 22:29:36 +00:00

Ensures proper precedence of * over %.

This commit is contained in:
Thomas Harte 2019-11-14 23:18:26 -05:00
parent 11de0e198f
commit 9d07765823

View File

@ -19,7 +19,7 @@ ST::ST(const std::string &file_name) : MFMSectorDump(file_name) {
// Very loose validation: the file needs to be a whole number of tracks,
// and not more than 160 of them.
const auto stats = file_.stats();
if(stats.st_size % 512*10) throw Error::InvalidFormat;
if(stats.st_size % (512*10)) throw Error::InvalidFormat;
if(stats.st_size > 512*10*160) throw Error::InvalidFormat;
// Head count: 2 if there are more than 80 tracks. Otherwise 1.