Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/sysprogs/WinCDEmu
Browse files Browse the repository at this point in the history
  • Loading branch information
sysprogs committed Dec 16, 2018
2 parents d5064c0 + b191640 commit 0e73660
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ImageFormats/Filesystems/miniudf.h
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ class UDFDisc
static SectorIndex TransformKey(SectorIndex idx)
{
//To efficiently support highly fragmented partitions, this function should perform a one-to-one non-monotonic transformation of idx.
//I.e. when we are adding increasing indicies (e.g. 0, 100, 200, 500), the transformation result should not monotonically grow (e.g. 1,2,7,123)
//I.e. when we are adding increasing indices (e.g. 0, 100, 200, 500), the transformation result should not monotonically grow (e.g. 1,2,7,123)
//or drop (e.g. 123,100,20,3). Instead, the result should change pseudorandomly (e.g. 100, 2, 500, 144). This will ensure maximum performance
//with the trees used by m_Extents
return idx;
Expand Down

0 comments on commit 0e73660

Please sign in to comment.