v2.4.0 - Added a /special/ folder with files for interacting with unmanaged drives and EEPROMs.

This commit is contained in:
Ponali
2025-07-14 14:32:29 +02:00
parent 876e5160df
commit ea464339e9
5 changed files with 374 additions and 235 deletions
+1 -1
View File
@@ -91,7 +91,7 @@ local function findCodeEnd(text,i)
return v>=min and v<=max
end
i=i+2
while not inRange(text:byte(i),0x40,0x7F) do i=i+1 end
while i<=#text and not inRange(text:byte(i),0x40,0x7F) do i=i+1 end
return i
end