diff options
author | Max Horn | 2010-11-07 01:01:18 +0000 |
---|---|---|
committer | Max Horn | 2010-11-07 01:01:18 +0000 |
commit | 18d40017e849ccb74d899b651042a750052d11f4 (patch) | |
tree | 1f307bed2b54a40082451f13fb0f5f6f39ec9d3a /engines/testbed | |
parent | 7e7ad149c29e14aab82906384676bdae436b6b4e (diff) | |
download | scummvm-rg350-18d40017e849ccb74d899b651042a750052d11f4.tar.gz scummvm-rg350-18d40017e849ccb74d899b651042a750052d11f4.tar.bz2 scummvm-rg350-18d40017e849ccb74d899b651042a750052d11f4.zip |
ENGINES: Unify code layout of all ADParams instances
svn-id: r54105
Diffstat (limited to 'engines/testbed')
-rw-r--r-- | engines/testbed/detection.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/engines/testbed/detection.cpp b/engines/testbed/detection.cpp index 1b8a86cea6..734ed0c22a 100644 --- a/engines/testbed/detection.cpp +++ b/engines/testbed/detection.cpp @@ -51,16 +51,27 @@ static const ADGameDescription testbedDescriptions[] = { }; static const ADParams detectionParams = { + // Pointer to ADGameDescription or its superset structure (const byte *)testbedDescriptions, + // Size of that superset structure sizeof(ADGameDescription), + // Number of bytes to compute MD5 sum for 512, + // List of all engine targets testbed_setting, + // Structure for autoupgrading obsolete targets 0, + // Name of single gameid (optional) "testbed", + // List of files for file-based fallback detection (optional) 0, + // Flags ADGF_NO_FLAGS, + // Additional GUI options (for every game} Common::GUIO_NONE, + // Maximum directory depth 1, + // List of directory globs 0 }; |