diff options
| -rw-r--r-- | src/Fl_Image_Surface.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Fl_Image_Surface.cxx b/src/Fl_Image_Surface.cxx index d69b34c4a..ab1248cc6 100644 --- a/src/Fl_Image_Surface.cxx +++ b/src/Fl_Image_Surface.cxx @@ -67,7 +67,7 @@ void Fl_Image_Surface::untranslate() { } /** Returns the Fl_Offscreen object associated to the image surface */ -Fl_Offscreen Fl_Image_Surface::offscreen() {return platform_surface->offscreen;} +Fl_Offscreen Fl_Image_Surface::offscreen() {return platform_surface? platform_surface->offscreen : NULL;} int Fl_Image_Surface::printable_rect(int *w, int *h) {return platform_surface->printable_rect(w, h);} |
