mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-18 02:50:33 +00:00
engine: soundlib: simplify string operation
This commit is contained in:
parent
c61442e960
commit
270e2a76a8
@ -66,7 +66,7 @@ wavdata_t *FS_LoadSound( const char *filename, const byte *buffer, size_t size )
|
|||||||
Sound_Reset(); // clear old sounddata
|
Sound_Reset(); // clear old sounddata
|
||||||
Q_strncpy( loadname, filename, sizeof( loadname ));
|
Q_strncpy( loadname, filename, sizeof( loadname ));
|
||||||
|
|
||||||
if( Q_stricmp( ext, "" ))
|
if( COM_CheckStringEmpty( ext ))
|
||||||
{
|
{
|
||||||
// we needs to compare file extension with list of supported formats
|
// we needs to compare file extension with list of supported formats
|
||||||
// and be sure what is real extension, not a filename with dot
|
// and be sure what is real extension, not a filename with dot
|
||||||
@ -155,7 +155,7 @@ stream_t *FS_OpenStream( const char *filename )
|
|||||||
Sound_Reset(); // clear old streaminfo
|
Sound_Reset(); // clear old streaminfo
|
||||||
Q_strncpy( loadname, filename, sizeof( loadname ));
|
Q_strncpy( loadname, filename, sizeof( loadname ));
|
||||||
|
|
||||||
if( Q_stricmp( ext, "" ))
|
if( COM_CheckStringEmpty( ext ))
|
||||||
{
|
{
|
||||||
// we needs to compare file extension with list of supported formats
|
// we needs to compare file extension with list of supported formats
|
||||||
// and be sure what is real extension, not a filename with dot
|
// and be sure what is real extension, not a filename with dot
|
||||||
|
Loading…
x
Reference in New Issue
Block a user