Removes console output in opt builds from gfx, gfx2, gtk.

Bugs 78645(r=cls, rs=blizzard, a=drivers(blizzard)) and 78665 (r=cls, sr=blizzard, a=drivers(blizzard)).
This commit is contained in:
jat%princeton.edu 2006-01-11 21:27:47 +00:00
Родитель b81dafada2
Коммит b4b0672354
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -98,8 +98,10 @@ nsScreenBeOS :: GetPixelDepth(PRInt32 *aPixelDepth)
pixelDepth = 16;
break;
default:
#ifdef DEBUG
printf("FIXME: Please add this screen depth to the code nsScreenBeOS.cpp\n");
pixelDepth = 32;
#endif
pixelDepth = 32;
break;
}
*aPixelDepth = pixelDepth;