ACCESS: Added support for Spanish Amazon Guardians of Eden
This commit is contained in:
parent
4392a095ac
commit
6f90770373
4 changed files with 5 additions and 3 deletions
4
NEWS.md
4
NEWS.md
|
@ -16,6 +16,9 @@ For a more comprehensive changelog of the latest experimental code, see:
|
|||
- Added support for OO-Topos
|
||||
- Added support for Glulx interactive fiction games
|
||||
- Added support for Private Eye (US release)
|
||||
- Added support for Spanish Blue Force
|
||||
- Added support for Spanish Ringworld
|
||||
- Added support for Spanish Amazon Guardians of Eden
|
||||
- Added support for AGS Games versions 2.5+
|
||||
|
||||
New ports:
|
||||
|
@ -92,7 +95,6 @@ For a more comprehensive changelog of the latest experimental code, see:
|
|||
|
||||
TsAGE:
|
||||
- Added support for uninstalled floppy version.
|
||||
- Properly support Spanish Ringworld & Blue Force.
|
||||
|
||||
Stark:
|
||||
- Added support for Hungarian translation.
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include "common/endian.h"
|
||||
#include "common/array.h"
|
||||
|
||||
#define VERSION_NUMBER 1
|
||||
#define VERSION_NUMBER 2
|
||||
|
||||
enum AccessMode {
|
||||
kFileReadMode = 1,
|
||||
|
|
Binary file not shown.
|
@ -54,7 +54,7 @@ bool Resources::load(Common::U32String &errorMessage) {
|
|||
}
|
||||
|
||||
// Validate the version number
|
||||
uint expectedVersion = 1;
|
||||
uint expectedVersion = 2;
|
||||
uint version = f.readUint16LE();
|
||||
if (version != expectedVersion) {
|
||||
errorMessage = Common::U32String::format(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue