1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 03:29:40 +00:00

Further remove type info from function naming.

This commit is contained in:
Thomas Harte
2025-02-26 16:00:34 -05:00
parent b44ea31bbf
commit 1db756063b
23 changed files with 192 additions and 188 deletions
+2 -2
View File
@@ -41,7 +41,7 @@ MSA::MSA(const std::string &file_name) :
track.reserve(sectors_per_track_ * 512);
uint16_t pointer = 0;
while(pointer < data_length) {
const auto byte = file_.get8();
const auto byte = file_.get();
// Compression scheme: if the byte E5 is encountered, an RLE run follows.
// An RLE run is encoded as the byte to repeat plus a 16-bit repeat count.
@@ -54,7 +54,7 @@ MSA::MSA(const std::string &file_name) :
pointer += 4;
if(pointer > data_length) break;
const auto value = file_.get8();
const auto value = file_.get();
auto count = file_.get_be<uint16_t>();
while(count--) {
track.push_back(value);