Skip to content

Commit

Permalink
extend index encoding table
Browse files Browse the repository at this point in the history
allows for more than 26 libraries to be imported, these extended values have been determined and verified by looking at games with large import tables by multiple parties (kiwi can vouch for the correctness)
  • Loading branch information
0xcaff committed Feb 23, 2024
1 parent 3dce117 commit 1e20614
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/oelf/OELFGenDynlibData.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const (
_nidSuffixKey = "518D64A635DED8C1E6B039B1C3E55230"

// _indexEncodingTable provides the encoding table for module indices that are appended to the end of NIDs.
_indexEncodingTable = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
_indexEncodingTable = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-"
)

// _moduleToLibDictionary contains a mapping of module names to library (prx) paths
Expand Down

0 comments on commit 1e20614

Please sign in to comment.