Skip to content

Commit 34427af

Browse files
committed
Fixed conversion to work on emulators :)
1 parent cb7e422 commit 34427af

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
out/
2+
.vs/

convert.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ void Image::changeSector( uint8_t sector )
329329
int free = lastSectorFree();
330330

331331
assert( free >= 2 );
332-
push_back( FLAG_CHANGE_SECTOR );
332+
push_back( FLAG_CHANGE_SECTOR | FLAG_REPEAT );
333333
push_back( sector ? sector : (uint8_t)( currentSectorNumber() + 1 ) );
334334
if ( !sector )
335335
addSector();

0 commit comments

Comments
 (0)