aboutsummaryrefslogtreecommitdiff
path: root/saga/resfile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'saga/resfile.cpp')
-rw-r--r--saga/resfile.cpp14
1 files changed, 3 insertions, 11 deletions
diff --git a/saga/resfile.cpp b/saga/resfile.cpp
index 31831994eb..ba1029e174 100644
--- a/saga/resfile.cpp
+++ b/saga/resfile.cpp
@@ -26,6 +26,7 @@
#include "resfile.h"
#include "binread.h"
+namespace Saga {
ResourceFile::ResourceFile() {
_resTblOffset = 0;
@@ -130,7 +131,7 @@ bool ResourceFile::loadResource(int32 rn, byte **res, int32 *res_len) {
*res = NULL;
*res_len = NULL;
- if (!R_PBOUNDS( rn, _resTblCt)) {
+ if (!R_PBOUNDS(rn, _resTblCt)) {
return false;
}
@@ -158,13 +159,4 @@ void ResourceFile::freeResource(byte *res) {
delete[] res;
}
-
-
-
-
-
-
-
-
-
-
+}