🎨 Remove unneeded comment
This commit is contained in:
parent
380aa4457e
commit
bc6f8405fa
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ void getBytes(uint8_t* buffer, unsigned long numBytes, bool isLast) {
|
||||||
//If we've reached end of file, close file and open next file
|
//If we've reached end of file, close file and open next file
|
||||||
if (file.offset == file.size) {
|
if (file.offset == file.size) {
|
||||||
closeCurrentFile();
|
closeCurrentFile();
|
||||||
//Unless we've reached the end, in that case don't open next file in case we've reached the end of the last disk
|
|
||||||
if (!isLast) {
|
if (!isLast) {
|
||||||
openNextFile();
|
openNextFile();
|
||||||
} else if (remainingBytes > 0) {
|
} else if (remainingBytes > 0) {
|
||||||
|
|
Loading…
Reference in a new issue