diff options
author | Walter van Niftrik | 2018-02-02 23:38:52 +0100 |
---|---|---|
committer | Walter van Niftrik | 2018-02-02 23:38:52 +0100 |
commit | 9e5b54ddc875a29e0b1de604e4e00cfe2a66dfc3 (patch) | |
tree | b79290dda425108b46e1945632887696a03290d4 /engines | |
parent | 236e5da6cc44db2d59fdbc3dc7f8dd46b5b479c2 (diff) | |
download | scummvm-rg350-9e5b54ddc875a29e0b1de604e4e00cfe2a66dfc3.tar.gz scummvm-rg350-9e5b54ddc875a29e0b1de604e4e00cfe2a66dfc3.tar.bz2 scummvm-rg350-9e5b54ddc875a29e0b1de604e4e00cfe2a66dfc3.zip |
ADL: Remove unused array terminator
Diffstat (limited to 'engines')
-rw-r--r-- | engines/adl/detection.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/adl/detection.cpp b/engines/adl/detection.cpp index cf5a60b172..7e395169b1 100644 --- a/engines/adl/detection.cpp +++ b/engines/adl/detection.cpp @@ -250,8 +250,7 @@ const DiskImageExt diskImageExts[] = { { Common::kPlatformApple2, ".nib" }, { Common::kPlatformApple2, ".dsk" }, { Common::kPlatformApple2, ".d13" }, - { Common::kPlatformAtari8Bit, ".xfd" }, - { Common::kPlatformUnknown, nullptr } + { Common::kPlatformAtari8Bit, ".xfd" } }; class AdlMetaEngine : public AdvancedMetaEngine { |