You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some of the textures will be missing because of case mismatch between material names in BSP and on filesystem.
E.g. BUILDING_TEMPLATE/BUILDING_TRAINSTATION_TRUSS_TEMPLATE001F_BETA vs materials/building_template/Building_Trainstation_Truss_Template001f_beta.vmt on disk.
FilesystemCollection needs to be able to open files by case insensitive names. However, it's not straightforward. Loading resources by name needs to be done as follows:
Try to load with exact name through entire chain
Try to load in "fallback" mode with case insensitive checks
Maybe add special something like dir_ncase config option for such dirs explicitly to simplify?
Finding files insensitively is dumb: opendir(), list all files, compare insensitively. Or make a tolower() hashmap, or whatever.
The text was updated successfully, but these errors were encountered:
https://www.moddb.com/mods/half-life-2-raising-the-bar-redux/downloads/raising-the-bar-redux-division-21-release
Some of the textures will be missing because of case mismatch between material names in BSP and on filesystem.
E.g.
BUILDING_TEMPLATE/BUILDING_TRAINSTATION_TRUSS_TEMPLATE001F_BETA
vsmaterials/building_template/Building_Trainstation_Truss_Template001f_beta.vmt
on disk.FilesystemCollection
needs to be able to open files by case insensitive names. However, it's not straightforward. Loading resources by name needs to be done as follows:Maybe add special something like
dir_ncase
config option for such dirs explicitly to simplify?Finding files insensitively is dumb:
opendir()
, list all files, compare insensitively. Or make atolower()
hashmap, or whatever.The text was updated successfully, but these errors were encountered: