mirror of
https://github.com/sanni/cartreader.git
synced 2024-11-23 21:19:16 +01:00
Fix crash
This commit is contained in:
parent
b5bff8c1f0
commit
5012ca88ac
@ -460,7 +460,10 @@ void setCart_COL() {
|
|||||||
else if (b == 2) {
|
else if (b == 2) {
|
||||||
for (byte count_newline = 0; count_newline < 7; count_newline++) {
|
for (byte count_newline = 0; count_newline < 7; count_newline++) {
|
||||||
while (1) {
|
while (1) {
|
||||||
if (myFile.peek() == '\n') {
|
if (myFile.curPosition() == 0) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
else if (myFile.peek() == '\n') {
|
||||||
myFile.seekSet(myFile.curPosition() - 1);
|
myFile.seekSet(myFile.curPosition() - 1);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -469,7 +472,8 @@ void setCart_COL() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
myFile.seekSet(myFile.curPosition() + 2);
|
if (myFile.curPosition() != 0)
|
||||||
|
myFile.seekSet(myFile.curPosition() + 2);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -859,7 +859,10 @@ void setCart_INTV() {
|
|||||||
else if (b == 2) {
|
else if (b == 2) {
|
||||||
for (byte count_newline = 0; count_newline < 7; count_newline++) {
|
for (byte count_newline = 0; count_newline < 7; count_newline++) {
|
||||||
while (1) {
|
while (1) {
|
||||||
if (myFile.peek() == '\n') {
|
if (myFile.curPosition() == 0) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
else if (myFile.peek() == '\n') {
|
||||||
myFile.seekSet(myFile.curPosition() - 1);
|
myFile.seekSet(myFile.curPosition() - 1);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -868,7 +871,8 @@ void setCart_INTV() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
myFile.seekSet(myFile.curPosition() + 2);
|
if (myFile.curPosition() != 0)
|
||||||
|
myFile.seekSet(myFile.curPosition() + 2);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user