Skip to content

Commit 6765d7e

Browse files
committed
SAVEコマンドの処理ミス修正
1 parent 491cc62 commit 6765d7e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

ttbasic/basic.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2611,9 +2611,7 @@ void isave() {
26112611

26122612
// 内部EEPROMメモリへの保存
26132613
topAddr = EEPROM_PAGE_SIZE*prgno;
2614-
for (uint16_t i=0; i < SIZE_LIST; i++) {
2615-
eeprom_update_block(listbuf,topAddr,SIZE_LIST);
2616-
}
2614+
eeprom_update_block(listbuf,topAddr,SIZE_LIST);
26172615
}
26182616

26192617
//NEW command handler

0 commit comments

Comments
 (0)