mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
Merge pull request #632 from Ragora/bugfix-get-sound-filename-crash
BugFix: Correct a crash caused by sfxProfile
This commit is contained in:
commit
e658c95f90
|
|
@ -154,7 +154,7 @@ class SFXProfile : public SFXTrack
|
|||
void unpackData( BitStream* stream );
|
||||
|
||||
/// Returns the sound filename.
|
||||
const String& getSoundFileName() const { return mFilename; }
|
||||
const String getSoundFileName() const { return mFilename; }
|
||||
void setSoundFileName(StringTableEntry filename) { mFilename = filename; }
|
||||
|
||||
bool getPreload() const { return mPreload; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue