mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
corrections to namespaces
svn-id: r13362
This commit is contained in:
parent
d24be923f3
commit
89d159f9c8
@ -148,4 +148,4 @@ int32 BinReader::readSint32BE() {
|
||||
return u32_be;
|
||||
}
|
||||
|
||||
}
|
||||
} // End of namespace Saga
|
||||
|
@ -25,6 +25,8 @@
|
||||
#include <stddef.h>
|
||||
#include "common/scummsys.h"
|
||||
|
||||
namespace Saga {
|
||||
|
||||
class BinReader {
|
||||
|
||||
protected:
|
||||
@ -60,6 +62,7 @@ public:
|
||||
int32 readSint32BE();
|
||||
};
|
||||
|
||||
} // End of namespace Saga
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -446,4 +446,4 @@ bool verifyIHNMCD() {
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
} // End of namespace Saga
|
||||
|
@ -118,7 +118,7 @@ typedef struct R_GAME_RESOURCEINFO_tag {
|
||||
int detectGame();
|
||||
bool openGame();
|
||||
|
||||
} // end namespace
|
||||
} // End of namespace Saga
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -111,7 +111,7 @@ bool verifyITECD();
|
||||
bool verifyIHNMDEMO();
|
||||
bool verifyIHNMCD();
|
||||
|
||||
}
|
||||
} // End of namespace Saga
|
||||
|
||||
#endif // SAGA_GAMEDESC_PRIV_H
|
||||
|
||||
|
@ -159,4 +159,4 @@ void ResourceFile::freeResource(byte *res) {
|
||||
delete[] res;
|
||||
}
|
||||
|
||||
}
|
||||
} // End of namespace Saga
|
||||
|
@ -33,6 +33,8 @@
|
||||
|
||||
#include "common/file.h"
|
||||
|
||||
namespace Saga {
|
||||
|
||||
class ResourceFile : public File {
|
||||
|
||||
public:
|
||||
@ -94,6 +96,7 @@ public:
|
||||
|
||||
};
|
||||
|
||||
} // End of namespace Saga
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -22,6 +22,8 @@
|
||||
#ifndef SAGA_RESNAMES_H
|
||||
#define SAGA_RESNAMES_H
|
||||
|
||||
namespace Saga {
|
||||
|
||||
/* Lookup tables
|
||||
\*-----------------------------------------------------------------*/
|
||||
#define ITE_SCENE_LUT 1806
|
||||
@ -120,6 +122,7 @@
|
||||
#define MUSIC_25 33
|
||||
#define MUSIC_26 34
|
||||
|
||||
} // End of namespace Saga
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -33,7 +33,6 @@
|
||||
|
||||
#include "gamedesc.h"
|
||||
|
||||
|
||||
struct SAGAGameSettings {
|
||||
const char *name;
|
||||
const char *description;
|
||||
@ -132,4 +131,4 @@ void SagaEngine::shutdown() {
|
||||
_system->quit();
|
||||
}
|
||||
|
||||
}
|
||||
} // End of namespace Saga
|
||||
|
@ -54,6 +54,6 @@ public:
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
} // End of namespace Saga
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user