- fixed some warnings

This commit is contained in:
Christoph Oelckers 2020-02-12 00:43:21 +01:00
parent 9fdd1d9e17
commit 9f9e59e3ba
3 changed files with 4 additions and 3 deletions

View file

@ -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 )

View file

@ -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());

View file

@ -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;