aboutsummaryrefslogtreecommitdiff
path: root/sword2/tony_gsdk.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sword2/tony_gsdk.cpp')
-rw-r--r--sword2/tony_gsdk.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sword2/tony_gsdk.cpp b/sword2/tony_gsdk.cpp
index 9d6b5f0227..537a7c8776 100644
--- a/sword2/tony_gsdk.cpp
+++ b/sword2/tony_gsdk.cpp
@@ -37,7 +37,7 @@ uint32 Read_file(const char *name, mem **membloc, uint32 uid) {
uint32 size;
if (!fh.open(name)) {
- Zdebug("Read_file cannot open %s", name);
+ debug(5, "Read_file cannot open %s", name);
return 0;
}
@@ -47,7 +47,7 @@ uint32 Read_file(const char *name, mem **membloc, uint32 uid) {
*membloc = Twalloc(size, MEM_float, uid);
if (fh.read((*membloc)->ad, size) != size) {
- Zdebug("Read_file read fail %d", name);
+ debug(5, "Read_file read fail %d", name);
return 0;
}