summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xMakefile2
-rw-r--r--str-player.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index c46bd9c..bb0d857 100755
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ CPPFLAGS=-Wall -g -O3 -mcpu=i686 -Werror -Iincludes `sdl-config --cflags` -DHAVE
LDFLAGS=-lz `sdl-config --libs` -lGL -lGLU -L/usr/X11/lib -lefence
CXX=g++
-SUBDIRS = psxdev generic lib Xenogears VP MegamanX5 mogltk
+SUBDIRS = psxdev generic lib Xenogears VP MegamanX5 mogltk ToD
TARGET = lzss dlzss cd-tool str-player crypto-search bgrep dte-tool tile-convert gltest
all: subdirs ${TARGET}
diff --git a/str-player.cpp b/str-player.cpp
index 08f8be4..7059900 100644
--- a/str-player.cpp
+++ b/str-player.cpp
@@ -73,13 +73,13 @@ void process_one_sector(Handle * f) {
f->read(sector, 2336);
h = (STR_Header *) ((Byte *) sector + 8);
- printm(M_INFO, "SubHeader: FN = %x, CN = %x, SM = %x, CI = %x: ", sector[0], sector[1], sector[2], sector[3]);
+/* printm(M_INFO, "SubHeader: FN = %x, CN = %x, SM = %x, CI = %x: ", sector[0], sector[1], sector[2], sector[3]);
printm(M_BARE, "SubHeader FN : %x\n", sector[0]);
printm(M_BARE, "SubHeader CN : %x\n", sector[1]);
printm(M_BARE, "SubHeader SM : %x\n", sector[2]);
printm(M_BARE, "SubHeader CI : %x\n", sector[3]);
-
+*/
if ((channel != -1) && (channel != sector[1]))
return;