Update CharMapHiresConverter.java

Use 8-bit charmap instead of 7-bit
This commit is contained in:
Peter Dell
2024-07-27 14:19:08 +03:00
parent 9ffaf1b1fd
commit 0394e27ae3

View File

@@ -44,7 +44,7 @@ public class CharMapHiresConverter extends CharMapConverter {
for (int y1 = 0; y1 < data.getParameters().getRows(); y1++) {
for (int x1 = 0; x1 < data.getParameters().getColumns(); x1++) {
int c = data.getSourceFileByte(CHAR_MAP_FILE, offset++) & 127;
int c = data.getSourceFileByte(CHAR_MAP_FILE, offset++);
if (c < 0) {
return true;
}