mirror of
https://github.com/peterdell/wudsn-ide.git
synced 2025-08-11 14:24:58 +00:00
Update CharMapHiresConverter.java
Use 8-bit charmap instead of 7-bit
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user