Merge remote-tracking branch 'origin/master' into 1.1
# Conflicts: # Source/Engine/Navigation/NavMesh.cpp # Source/Engine/Navigation/NavMeshBuilder.cpp
This commit is contained in:
@@ -231,7 +231,9 @@ bool WindowsFileSystem::ShowOpenFileDialog(Window* parentWindow, const StringVie
|
||||
while (*ptr)
|
||||
{
|
||||
filenames.Add(directory / ptr);
|
||||
ptr += (lstrlenW(ptr) + 1);
|
||||
ptr += lstrlenW(ptr);
|
||||
if (multiSelect)
|
||||
ptr++;
|
||||
}
|
||||
|
||||
result = false;
|
||||
@@ -276,7 +278,9 @@ bool WindowsFileSystem::ShowSaveFileDialog(Window* parentWindow, const StringVie
|
||||
while (*ptr)
|
||||
{
|
||||
filenames.Add(directory / ptr);
|
||||
ptr += (lstrlenW(ptr) + 1);
|
||||
ptr += lstrlenW(ptr);
|
||||
if (multiSelect)
|
||||
ptr++;
|
||||
}
|
||||
|
||||
result = false;
|
||||
|
||||
Reference in New Issue
Block a user