mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
ACCESS: Silence gcc warnings
This commit is contained in:
parent
a6150f9308
commit
1fe6e92bf9
@ -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;
|
||||
|
@ -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))
|
||||
|
@ -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 };
|
||||
|
@ -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))
|
||||
|
@ -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")) {
|
||||
|
@ -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);
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user