diff options
author | 2019-08-25 13:39:06 +1000 | |
---|---|---|
committer | 2019-08-25 13:39:06 +1000 | |
commit | 7031c31c00eb947993fa2b7a6157b6778812a9dd (patch) | |
tree | d03b64b1489aba2d0f1e82b8744bb11d677138a7 /src/lib/formats/flex_dsk.cpp | |
parent | 792fc52cdc9a35e4e5fcba0ea7869fe26f966625 (diff) |
srcclean (nw)
I'm assuming atronic.cpp was supposed to be Windows-1252 with Euro currency symbol encoding. Everyone please use UTF-8 for source files.
Diffstat (limited to 'src/lib/formats/flex_dsk.cpp')
-rw-r--r-- | src/lib/formats/flex_dsk.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/formats/flex_dsk.cpp b/src/lib/formats/flex_dsk.cpp index 30ff15dcf74..cb2dbb33b12 100644 --- a/src/lib/formats/flex_dsk.cpp +++ b/src/lib/formats/flex_dsk.cpp @@ -92,12 +92,12 @@ int flex_format::find_size(io_generic *io, uint32_t form_factor) if (info.disk_ext[0] || info.disk_ext[1] || info.disk_ext[2]) { LOG_FORMATS("."); for (int i = 0; i < sizeof(info.disk_name); i++) { - uint8_t ch = info.disk_name[i]; - if (ch < 0x20 || ch > 0x7f) { - LOG_FORMATS("[%02x]", ch); - } else { - LOG_FORMATS("%c", ch); - } + uint8_t ch = info.disk_name[i]; + if (ch < 0x20 || ch > 0x7f) { + LOG_FORMATS("[%02x]", ch); + } else { + LOG_FORMATS("%c", ch); + } } } LOG_FORMATS("\"\n"); |