diff options
Diffstat (limited to 'src/utils/sdlpixel.h')
-rw-r--r-- | src/utils/sdlpixel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/sdlpixel.h b/src/utils/sdlpixel.h index 432fa1939..455702757 100644 --- a/src/utils/sdlpixel.h +++ b/src/utils/sdlpixel.h @@ -82,7 +82,7 @@ inline void SDLputPixel(SDL_Surface* surface, int x, int y, const Color& color) { - if (!surface) + if (surface == nullptr) return; const int bpp = surface->format->BytesPerPixel; @@ -189,7 +189,7 @@ inline unsigned short SDLAlpha16(const unsigned short src, inline void SDLputPixelAlpha(SDL_Surface* surface, int x, int y, const Color& color) { - if (!surface) + if (surface == nullptr) return; const int bpp = surface->format->BytesPerPixel; |