Skip to content

Commit

Permalink
Fix totk dict ids
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchLeaders committed Jun 26, 2024
1 parent 1101b28 commit 6857e20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Helpers/ZStdHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ public static int GetDictioanryId(this string path, bool useDictionaries)
{
false => -1,
true => path.EndsWith(".rsizetable") || path.EndsWith("ZsDic.pack") ? -1 :
path.EndsWith(".bcett.byml") ? 3 :
path.EndsWith(".pack") ? 2 : 1
path.EndsWith(".bcett.byml") ? 2 :
path.EndsWith(".pack") ? 3 : 1
};
}

Expand Down

0 comments on commit 6857e20

Please sign in to comment.