From 5836ac720892b3de765e2a239bb741e98dff9f41 Mon Sep 17 00:00:00 2001 From: cecio Date: Sat, 18 Apr 2026 23:43:31 +0200 Subject: [PATCH] small comment --- src/usb_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/usb_device.c b/src/usb_device.c index 3e5c66e..dc7f8d0 100644 --- a/src/usb_device.c +++ b/src/usb_device.c @@ -75,7 +75,7 @@ int32_t tud_msc_read10_cb(uint8_t lun, uint32_t lba, uint32_t offset, // Return data from ramdisk, or zeros for blocks beyond it. // The disk reports FAKE_DISK_BLOCK_NUM sectors but only - // DISK_BLOCK_NUM exist in RAM — the rest must read as empty. + // DISK_BLOCK_NUM exist in RAM, the rest must read as empty. if (lba < DISK_BLOCK_NUM) { memcpy(buffer, msc_disk[lba], bufsize); } else {