ACCESS: Silence gcc warnings

This commit is contained in:
Paul Gilbert 2015-11-27 12:40:33 -05:00
parent a6150f9308
commit 1fe6e92bf9
6 changed files with 6 additions and 14 deletions

View File

@ -27,9 +27,6 @@ namespace Access {
namespace Amazon {
AmazonResources::AmazonResources(AccessEngine *vm): Resources(vm) {
}
void AmazonResources::load(Common::SeekableReadStream &s) {
Resources::load(s);
uint count;

View File

@ -140,7 +140,8 @@ public:
Common::String HELPLVLTXT[3];
Common::String IQLABELS[9];
public:
AmazonResources(AccessEngine *vm);
AmazonResources(AccessEngine *vm) : Resources(vm) {}
virtual ~AmazonResources() {}
};
#define AMRES (*((Amazon::AmazonResources *)_vm->_res))

View File

@ -27,11 +27,6 @@ namespace Access {
namespace Martian {
MartianResources::MartianResources(AccessEngine *vm) : Resources(vm) {
}
/*------------------------------------------------------------------------*/
const int SIDEOFFR[] = { 4, 0, 7, 10, 3, 1, 2, 13, 0, 0, 0, 0 };
const int SIDEOFFL[] = { 11, 6, 1, 4, 10, 6, 1, 4, 0, 0, 0, 0 };
const int SIDEOFFU[] = { 1, 2, 0, 2, 2, 1, 1, 0, 0, 0, 0, 0 };

View File

@ -58,7 +58,8 @@ class MartianResources : public Resources {
public:
public:
MartianResources(AccessEngine *vm);
MartianResources(AccessEngine *vm) : Resources(vm) {}
virtual ~MartianResources() {}
};
#define MMRES (*((Martian::MartianResources *)_vm->_res))

View File

@ -36,9 +36,6 @@ Resources *Resources::init(AccessEngine *vm) {
error("Unknown game");
}
Resources::Resources(AccessEngine *vm): _vm(vm) {
}
bool Resources::load(Common::String &errorMessage) {
Common::File f;
if (!f.open("access.dat")) {

View File

@ -88,7 +88,8 @@ public:
Common::Array< Common::Array<byte> > CURSORS;
Common::String CANT_GET_THERE;
public:
Resources(AccessEngine *vm);
Resources(AccessEngine *vm) : _vm(vm) {}
virtual ~Resources() {}
static Resources *init(AccessEngine *vm);
/**