Skip to content
Snippets Groups Projects
Commit fb586bb2 authored by Odilitime's avatar Odilitime
Browse files

disable debug

parent 9be99bf7
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ RGBAPNMObject * readPPM(const char* fileName) {
res = fscanf(fr, "%9s", fileType);
data->magicNum=fileType;
std::cout << "fileType:" << fileType << std::endl;
//std::cout << "fileType:" << fileType << std::endl;
unsigned char bits = 0;
......@@ -36,7 +36,7 @@ RGBAPNMObject * readPPM(const char* fileName) {
} else if (strncmp(fileType, "P8" , 2) == 0) {
bits = 32; // PPM
}
std::cout << "bits:" << bits << std::endl;
//std::cout << "bits:" << bits << std::endl;
// read the rest of header
unsigned int width, height;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment