mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-06 01:31:39 +00:00
TWINE: mark floppy disk version as unsupported when gif support is not compiled in
This commit is contained in:
parent
a8280b299e
commit
96f79a27f9
@ -1,2 +1,3 @@
|
|||||||
|
engines/twine/detection.cpp
|
||||||
engines/twine/metaengine.cpp
|
engines/twine/metaengine.cpp
|
||||||
engines/twine/parser/text.cpp
|
engines/twine/parser/text.cpp
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
|
|
||||||
#include "common/config-manager.h"
|
#include "common/config-manager.h"
|
||||||
#include "common/language.h"
|
#include "common/language.h"
|
||||||
|
#include "common/translation.h"
|
||||||
#include "engines/advancedDetector.h"
|
#include "engines/advancedDetector.h"
|
||||||
#include "base/plugins.h"
|
#include "base/plugins.h"
|
||||||
#include "twine/detection.h"
|
#include "twine/detection.h"
|
||||||
@ -207,11 +208,19 @@ static const ADGameDescription twineGameDescriptions[] = {
|
|||||||
// 11 August 1995 at 23:28
|
// 11 August 1995 at 23:28
|
||||||
{
|
{
|
||||||
"lba",
|
"lba",
|
||||||
|
#ifdef USE_GIF
|
||||||
"Floppy Disk Version",
|
"Floppy Disk Version",
|
||||||
AD_ENTRY1s("FLA_GIF.HQR", "3f7383f65afa212e3eec430627828b64", 1784466),
|
AD_ENTRY1s("FLA_GIF.HQR", "3f7383f65afa212e3eec430627828b64", 1784466),
|
||||||
Common::EN_ANY,
|
Common::EN_ANY,
|
||||||
Common::kPlatformDOS,
|
Common::kPlatformDOS,
|
||||||
ADGF_TESTING | TwinE::TF_USE_GIF,
|
ADGF_TESTING | TwinE::TF_USE_GIF,
|
||||||
|
#else
|
||||||
|
_s("This version requires Giflib which was not compiled into ScummVM"),
|
||||||
|
AD_ENTRY1s("FLA_GIF.HQR", "3f7383f65afa212e3eec430627828b64", 1784466),
|
||||||
|
Common::EN_ANY,
|
||||||
|
Common::kPlatformDOS,
|
||||||
|
ADGF_UNSUPPORTED,
|
||||||
|
#endif
|
||||||
GUIO1(GUIO_NONE)
|
GUIO1(GUIO_NONE)
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user