#14041 closed defect (fixed)

Full Throttle Remastered

Reported by: schuetti1 Owned by: criezy
Priority: normal Component: --Unset--
Version: Keywords: Full Throttle Remastered
Cc: schuetti1 Game:

Description (last modified by schuetti1)

The game in 'Full Throttle Remastered\' seems to be an unknown game variant.

Please report the following data to the ScummVM team at https://bugs.scummvm.org/ along with the name of the game you tried to add and its version, language, etc.:

Matched game IDs for the glk engine: zcode

{"full.data", 0, "a1f4e029eb5f5cef149b9ecbec4c2012", 5465581773},

Installed with Steam
https://store.steampowered.com/app/228360/Full_Throttle_Remastered/

Looks more like Macintosh
https://wiki.scummvm.org/index.php?title=Full_Throttle
because it has just the "full.data" file.

Starts with ERROR: Unknown Z-code version!

Change History (6)

comment:1 by schuetti1, 16 months ago

Description: modified (diff)

comment:2 by schuetti1, 16 months ago

Description: modified (diff)

comment:3 by tag2015, 16 months ago

Hi, thanks for your report.
Unfortunately the remastered version of Full Throttle is not supported, as indicated on
the wiki.
Scummvm detects the "full.data" file because that extension is also used by z-code glk games, but that engine is completely unrelated.

The remaster also includes the "classic" version however, so if you are interested you can extract the relative files (using DoublefineExplorer) and add those to ScummVM.

comment:4 by criezy, 16 months ago

We might want to also include ".data" in the code below to not list as unknown variants:

// Generic .dat/.zip files don't get reported as matches unless they have a known md5
if (filename.hasSuffixIgnoreCase(".dat") || filename.hasSuffixIgnoreCase(".zip") || emptyBlorb)
	continue;

It seems to me that ".data" is too generic as well to list all games with a "*.data" file as an unknown Z-code variant.

in reply to:  4 comment:5 by tag2015, 16 months ago

Replying to criezy:

We might want to also include ".data" in the code below to not list as unknown variants:

// Generic .dat/.zip files don't get reported as matches unless they have a known md5
if (filename.hasSuffixIgnoreCase(".dat") || filename.hasSuffixIgnoreCase(".zip") || emptyBlorb)
	continue;

It seems to me that ".data" is too generic as well to list all games with a "*.data" file as an unknown Z-code variant.

Yes, I agree. In fact, I did a similar change some time ago (can't remember which glk subengine) that picked all .prg / .tap files (common extensions for commodore roms) as possible variants

comment:6 by criezy, 16 months ago

Owner: set to criezy
Resolution: fixed
Status: newclosed

I have made the change. This means Full Throttle Remastered should no longer be detected as a supported game.

Note: See TracTickets for help on using tickets.