engine: imagelib: simplify string operation

This commit is contained in:
Alibek Omarov 2022-12-04 05:20:10 +03:00
parent d0928af355
commit c61442e960

View File

@ -224,7 +224,7 @@ rgbdata_t *FS_LoadImage( const char *filename, const byte *buffer, size_t size )
Q_strncpy( loadname, filename, sizeof( loadname )); Q_strncpy( loadname, filename, sizeof( loadname ));
Image_Reset(); // clear old image Image_Reset(); // clear old image
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
@ -355,7 +355,7 @@ writes image as any known format
qboolean FS_SaveImage( const char *filename, rgbdata_t *pix ) qboolean FS_SaveImage( const char *filename, rgbdata_t *pix )
{ {
const char *ext = COM_FileExtension( filename ); const char *ext = COM_FileExtension( filename );
qboolean anyformat = !Q_stricmp( ext, "" ) ? true : false; qboolean anyformat = !COM_CheckStringEmpty( ext );
string path, savename; string path, savename;
const savepixformat_t *format; const savepixformat_t *format;