2
0
Fork 0
mirror of https://github.com/GTA-ASM/SanAndreasUnity synced 2025-03-05 07:37:17 +00:00

load handling use case-sensitive paths

This commit is contained in:
in0finite 2019-10-10 00:22:35 +02:00
parent 43f44a6f00
commit be2df19fb5
2 changed files with 2 additions and 1 deletions
Assets/Scripts
Behaviours
Importing/Archive

View file

@ -361,7 +361,7 @@ namespace SanAndreasUnity.Behaviours
private static void StepLoadHandling ()
{
Handling.Load(Config.GetPath("handling_path"));
Handling.Load(ArchiveManager.PathToCaseSensitivePath(Config.GetPath("handling_path")));
}
private static void StepLoadAnimGroups ()

View file

@ -33,6 +33,7 @@ namespace SanAndreasUnity.Importing.Archive
".zon",
".img",
".dat",
".cfg",
};
private readonly Dictionary<String, LooseArchiveEntry> _fileDict;