mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-14 16:14:38 +00:00
Fix unintentionally deleted param
This commit is contained in:
parent
6e45643b28
commit
d669eb6ee7
1 changed files with 1 additions and 1 deletions
|
|
@ -1216,7 +1216,7 @@ void Platform::getVolumeInformationList( Vector<VolumeInformation>& out_rVolumeI
|
||||||
convertUTF16toUTF8( lpszFileSystem, buf );
|
convertUTF16toUTF8( lpszFileSystem, buf );
|
||||||
info.FileSystem = StringTable->insert( buf );
|
info.FileSystem = StringTable->insert( buf );
|
||||||
|
|
||||||
convertUTF16toUTF8( lpszVolumeName );
|
convertUTF16toUTF8( lpszVolumeName, buf );
|
||||||
info.Name = StringTable->insert( buf );
|
info.Name = StringTable->insert( buf );
|
||||||
#else
|
#else
|
||||||
info.FileSystem = StringTable->insert( lpszFileSystem );
|
info.FileSystem = StringTable->insert( lpszFileSystem );
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue