mirror of
https://github.com/vcmi/vcmi.git
synced 2025-09-16 09:26:28 +02:00
Fix incorrect missing video files diagnostics on polish version
This commit is contained in:
@@ -102,7 +102,7 @@ void StartGameTab::refreshGameData()
|
||||
};
|
||||
|
||||
bool missingSoundtrack = !CResourceHandler::get()->existsResource(AudioPath::builtin("Music/MainMenu"));
|
||||
bool missingVideoFiles = !CResourceHandler::get()->existsResource(VideoPath::builtin("Video/H3Intro"));
|
||||
bool missingVideoFiles = !CResourceHandler::get()->existsResource(VideoPath::builtin("Video/H3Intro")) && !CResourceHandler::get()->existsResource(ResourcePath("Video/H3Intro", EResType::VIDEO_LOW_QUALITY));
|
||||
bool missingGameFiles = false;
|
||||
bool missingCampaings = false;
|
||||
|
||||
|
Reference in New Issue
Block a user