aboutsummaryrefslogtreecommitdiff
path: root/engines/supernova
diff options
context:
space:
mode:
authorJoseph-Eugene Winzer2017-08-29 01:09:52 +0200
committerThierry Crozat2018-01-23 01:52:59 +0000
commit2b03a1f52ab0a97e094282654e903758a806c9c8 (patch)
tree729c82e45be713a0e6725685e54202354898b6ec /engines/supernova
parentedef2792da5ca6f039a6d9ff7618cd9ad217f444 (diff)
downloadscummvm-rg350-2b03a1f52ab0a97e094282654e903758a806c9c8.tar.gz
scummvm-rg350-2b03a1f52ab0a97e094282654e903758a806c9c8.tar.bz2
scummvm-rg350-2b03a1f52ab0a97e094282654e903758a806c9c8.zip
SUPERNOVA: Formatting
Diffstat (limited to 'engines/supernova')
-rw-r--r--engines/supernova/detection.cpp50
1 files changed, 26 insertions, 24 deletions
diff --git a/engines/supernova/detection.cpp b/engines/supernova/detection.cpp
index e896ae6ad0..1ac9ff98d0 100644
--- a/engines/supernova/detection.cpp
+++ b/engines/supernova/detection.cpp
@@ -22,41 +22,43 @@
#include "base/plugins.h"
#include "common/file.h"
+#include "common/savefile.h"
+#include "common/system.h"
#include "engines/advancedDetector.h"
#include "supernova/supernova.h"
static const PlainGameDescriptor supernovaGames[] = {
- {"msn1", "Mission Supernova 1"},
- {"msn2", "Mission Supernova 2"},
- {NULL, NULL}
+ {"msn1", "Mission Supernova 1"},
+ {"msn2", "Mission Supernova 2"},
+ {NULL, NULL}
};
namespace Supernova {
static const ADGameDescription gameDescriptions[] = {
- // Mission Supernova 1
- {
- "msn1",
- NULL,
- AD_ENTRY1s("msn.exe", "d11264516c529c7fc2ca81d8ba062d9e", 65536),
- Common::DE_DEU,
- Common::kPlatformDOS,
- ADGF_UNSTABLE,
- GUIO1(GUIO_NONE)
- },
+ // Mission Supernova 1
+ {
+ "msn1",
+ NULL,
+ AD_ENTRY1s("msn.exe", "d11264516c529c7fc2ca81d8ba062d9e", 65536),
+ Common::DE_DEU,
+ Common::kPlatformDOS,
+ ADGF_UNSTABLE,
+ GUIO1(GUIO_NONE)
+ },
- // Mission Supernova 2
- {
- "msn2",
- NULL,
- AD_ENTRY1s("ms2.exe", "e1b725393c3665f30efa96e2f46d589e", 82944),
- Common::DE_DEU,
- Common::kPlatformDOS,
- ADGF_UNSTABLE,
- GUIO1(GUIO_NONE)
- },
+ // Mission Supernova 2
+ {
+ "msn2",
+ NULL,
+ AD_ENTRY1s("ms2.exe", "e1b725393c3665f30efa96e2f46d589e", 82944),
+ Common::DE_DEU,
+ Common::kPlatformDOS,
+ ADGF_UNSTABLE,
+ GUIO1(GUIO_NONE)
+ },
- AD_TABLE_END_MARKER
+ AD_TABLE_END_MARKER
};
}