Code cleanup: use boolean instead of int for colormanagement

This commit is contained in:
2013-09-05 17:13:43 +00:00
parent 44ff79c432
commit d4b8a6cb85
17 changed files with 113 additions and 110 deletions

View File

@@ -173,7 +173,7 @@ void ViewerOperation::updateImage(rcti *rect)
{
IMB_partial_display_buffer_update(this->m_ibuf, this->m_outputBuffer, NULL, getWidth(), 0, 0,
this->m_viewSettings, this->m_displaySettings,
rect->xmin, rect->ymin, rect->xmax, rect->ymax, FALSE);
rect->xmin, rect->ymin, rect->xmax, rect->ymax, false);
this->updateDraw();
}