summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPixel <Pixel>2002-06-26 11:10:53 +0000
committerPixel <Pixel>2002-06-26 11:10:53 +0000
commitd140a59200c6a20812161b317bbe69936b9d443a (patch)
treea05f7f7704a98ea6fe939921054d1296b12462ab
parent9fe0a4f700c4f54acf7a54d0358d2005f1a7e035 (diff)
Plop
-rw-r--r--str-util.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/str-util.cpp b/str-util.cpp
index 6a5b5bf..223270c 100644
--- a/str-util.cpp
+++ b/str-util.cpp
@@ -70,7 +70,7 @@ void process_one_sector(FILE * f) {
fread(sector, 2336, 1, f);
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]);
@@ -78,7 +78,7 @@ void process_one_sector(FILE * f) {
printm(M_BARE, "SubHeader CI : %x\n", sector[3]);
*/
if ((sector[2] == 0x48) || (sector[2] == 0x42)) {
- printm(M_BARE, "Video sector\n");
+// printm(M_BARE, "Video sector\n");
/* printm(M_BARE, "Status : %04x\n", h->StSTATUS);
printm(M_BARE, "Type : %04x\n", h->StTYPE);
printm(M_BARE, "Sector Offset: %i\n", h->StSECTOR_OFFSET);
@@ -131,7 +131,7 @@ void process_one_sector(FILE * f) {
int locked = 0;
SoundSector * buffer = (SoundSector *) sector;
- printm(M_BARE, "Audio sector\n");
+// printm(M_BARE, "Audio sector\n");
/* printm(M_BARE, "Frequency: %i\n", xahalfhz(buffer) ? 18900 : 37800);
printm(M_BARE, "Channels : %s\n", xastereo(buffer) ? "stereo" : "mono"); */
// fwrite(sector + 8, 1, 2324, stdout);
@@ -178,7 +178,7 @@ void process_one_sector(FILE * f) {
saveXaDecode(xachannel(buffer));
} else {
- printm(M_BARE, "Unknow sector\n");
+// printm(M_BARE, "Unknow sector\n");
}
// printm(M_BARE, "---------------------------------\n\n");
}