mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 03:33:48 +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 );
|
||||
info.FileSystem = StringTable->insert( buf );
|
||||
|
||||
convertUTF16toUTF8( lpszVolumeName );
|
||||
convertUTF16toUTF8( lpszVolumeName, buf );
|
||||
info.Name = StringTable->insert( buf );
|
||||
#else
|
||||
info.FileSystem = StringTable->insert( lpszFileSystem );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue