From ce7b800a62938d0972e8413acdf44b2295c6420d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20Kera=CC=88nen?= Date: Sat, 18 Mar 2017 09:35:43 +0200 Subject: [PATCH] Resources|Client: Game logo can be produced whenever game is playable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ignore user’s potentially missing additional packages when making the game logo. --- doomsday/apps/client/src/resource/idtech1image.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doomsday/apps/client/src/resource/idtech1image.cpp b/doomsday/apps/client/src/resource/idtech1image.cpp index a96716593a..68ad588e7f 100644 --- a/doomsday/apps/client/src/resource/idtech1image.cpp +++ b/doomsday/apps/client/src/resource/idtech1image.cpp @@ -82,7 +82,7 @@ Image IdTech1Image::makeGameLogo(Game const &game, { try { - if (game.isPlayable()) + if (game.isPlayableWithDefaultPackages()) { Block const playPal = catalog.read("PLAYPAL"); Block const title = catalog.read("TITLE");