Changes between Initial Version and Version 1 of Ticket #13483, comment 10
- Timestamp:
- May 15, 2022, 6:52:17 AM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13483, comment 10
initial v1 1 1 It's good news that detection eventually worked with renaming the files. 2 2 This means that if we change the detection entry in engines/scumm/detection_tables.h from 3 [code]{ "farm", "farm", kGenHEMac, UNK_LANG, Common::kPlatformMacintosh, 0 },[/code] 3 {{{ 4 { "farm", "farm", kGenHEMac, UNK_LANG, Common::kPlatformMacintosh, 0 }, 5 }}} 4 6 to 5 [code]{ "farm", "The Farm", kGenHEMac, UNK_LANG, Common::kPlatformMacintosh, 0 },[/code] 7 {{{ 8 { "farm", "The Farm", kGenHEMac, UNK_LANG, Common::kPlatformMacintosh, 0 }, 9 }}} 6 10 then the renaming workaround won't be needed, and you also won't get the warning about the missing resource file. 7 11