mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- fixed some warnings
This commit is contained in:
parent
9fdd1d9e17
commit
9f9e59e3ba
3 changed files with 4 additions and 3 deletions
|
@ -410,7 +410,7 @@ endif()
|
|||
if( MSVC )
|
||||
find_package( ZMusic )
|
||||
else()
|
||||
find_package( ZMusic REQUIRED )
|
||||
find_package( ZMusic )
|
||||
endif()
|
||||
|
||||
if( MSVC AND NOT ZMUSIC_FOUND )
|
||||
|
|
|
@ -108,11 +108,12 @@ static FName knownMusicExts[] = {
|
|||
FString G_SetupFilenameBasedMusic(const char* fn, const char* defmusic)
|
||||
{
|
||||
FString name = StripExtension(fn);
|
||||
FString test;
|
||||
|
||||
// Test if a real file with this name exists with all known extensions for music.
|
||||
for (auto& ext : knownMusicExts)
|
||||
{
|
||||
FStringf test("%s.%s", name.GetChars(), ext.GetChars());
|
||||
test.Format("%s.%s", name.GetChars(), ext.GetChars());
|
||||
if (FileExists(test)) return test;
|
||||
#ifdef __unix__
|
||||
test.Format("%s.%s", name.GetChars(), FString(ext.GetChars()).MakeLower().GetChars());
|
||||
|
|
|
@ -26,7 +26,7 @@ public:
|
|||
|
||||
void CleanForRestart() override;
|
||||
const char* DeviceName() const override;
|
||||
void WriteSavePic(FileWriter* file, int width, int height);
|
||||
void WriteSavePic(FileWriter* file, int width, int height) override;
|
||||
#ifdef IMPLEMENT_IT
|
||||
void SetTextureFilterMode() override;
|
||||
IHardwareTexture *CreateHardwareTexture() override;
|
||||
|
|
Loading…
Reference in a new issue