diff options
Diffstat (limited to 'include/core/SkBitmap.h')
-rw-r--r-- | include/core/SkBitmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/core/SkBitmap.h b/include/core/SkBitmap.h index 4e512c0535..b36a1fd3fd 100644 --- a/include/core/SkBitmap.h +++ b/include/core/SkBitmap.h @@ -444,7 +444,7 @@ public: */ bool readyToDraw() const { return this->getPixels() != NULL && - (this->colorType() != kIndex_8_SkColorType || NULL != fColorTable); + (this->colorType() != kIndex_8_SkColorType || fColorTable); } /** Returns the pixelRef's texture, or NULL |