str0.example.ini 812 B

123456789101112131415161718
  1. # patches strings in-binary
  2. # section name is the file base name
  3. [steamclient.so]
  4. # a python list of strings to patch
  5. # the null terminator is placed where the first character would be,
  6. # so the string must at least be a prefix if not the entire string
  7. strings = [
  8. "RecordSteamInterfaceCreation (PID %d): %s / %s",
  9. "Warning: failed to init SDL thread priority manager: SDL not found",
  10. "CAppInfoCacheReadFromDiskThread took %lld milliseconds to initialize",
  11. "CApplicationManagerPopulateThread took %lld milliseconds to initialize (will have waited on CAppInfoCacheReadFromDiskThread)",
  12. ]
  13. # whether or not to write null bytes through the entire length of the matched string
  14. # this will write zeroes up to the original null terminator
  15. fully_zero = false