1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-26 08:49:37 +00:00

Removes stray non-ASCII typo.

This commit is contained in:
Thomas Harte 2018-05-13 15:37:35 -04:00
parent 5d6b5d9f10
commit 484e640d43

View File

@ -21,7 +21,7 @@ bool Analyser::Static::Commodore::File::is_basic() {
// [4 bytes: address of start of next line]
// [4 bytes: this line number]
// ... null-terminated code ...
// (with a next line address of 0000 indicating end of program)ß
// (with a next line address of 0000 indicating end of program)
while(1) {
if(static_cast<size_t>(line_address - starting_address) >= data.size() + 2) break;