diff options
author | Sebastian Geerken <devnull@localhost> | 2013-06-17 11:21:32 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2013-06-17 11:21:32 +0200 |
commit | e29d48718515b0afe04fecc396f7c34865726cab (patch) | |
tree | bb72f513ccc03e5f81d7447a02dc7b203e67fa0f /dw/fltkimgbuf.cc | |
parent | 126ae913efb3829c980a2151db5bbcfd68c5b39c (diff) |
Corrections of gamma.
Diffstat (limited to 'dw/fltkimgbuf.cc')
-rw-r--r-- | dw/fltkimgbuf.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dw/fltkimgbuf.cc b/dw/fltkimgbuf.cc index 4b93601f..56a673fa 100644 --- a/dw/fltkimgbuf.cc +++ b/dw/fltkimgbuf.cc @@ -91,8 +91,8 @@ void FltkImgbuf::init (Type type, int width, int height, double gamma, case RGB: bpp = 3; break; default: bpp = 1; break; } - _MSG("FltkImgbuf::init width=%d height=%d bpp=%d gamma=%g\n", - width, height, bpp, gamma); + MSG("FltkImgbuf::init width=%d height=%d bpp=%d gamma=%g\n", + width, height, bpp, gamma); rawdata = new uchar[bpp * width * height]; // Set light-gray as interim background color. memset(rawdata, 222, width*height*bpp); |