Skip to content

Commit

Permalink
mkltfs
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaoyangwx committed Nov 1, 2023
1 parent 82501a7 commit 2a798b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LTFSCopyGUI/ApplicationEvents.vb
Original file line number Diff line number Diff line change
Expand Up @@ -273,11 +273,11 @@ dataDir:{dataDir}
End If
Dim P0Size As UInt16 = 1
If i + 7 <= param.Length - 1 Then
P0Size = P0Size And Val(param(i + 7))
P0Size = &HFFFF And Val(param(i + 7))
End If
Dim P1Size As UInt16 = &HFFFF
If i + 8 <= param.Length - 1 Then
P1Size = P1Size And Val(param(i + 8))
P1Size = &HFFFF And Val(param(i + 8))
End If

Dim sense As Byte() = {}
Expand Down

0 comments on commit 2a798b9

Please sign in to comment.