aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/Base/BRenderSDL.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/Base/BRenderSDL.h')
-rw-r--r--engines/wintermute/Base/BRenderSDL.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/wintermute/Base/BRenderSDL.h b/engines/wintermute/Base/BRenderSDL.h
index 8d23a5bb12..0192849afa 100644
--- a/engines/wintermute/Base/BRenderSDL.h
+++ b/engines/wintermute/Base/BRenderSDL.h
@@ -63,16 +63,16 @@ public:
const char *getName();
- ERRORCODE initRenderer(int width, int height, bool windowed);
- ERRORCODE flip();
- ERRORCODE fill(byte r, byte g, byte b, Common::Rect *rect = NULL);
+ bool initRenderer(int width, int height, bool windowed);
+ bool flip();
+ bool fill(byte r, byte g, byte b, Common::Rect *rect = NULL);
- ERRORCODE fade(uint16 alpha);
- ERRORCODE fadeToColor(uint32 color, Common::Rect *rect = NULL);
+ bool fade(uint16 alpha);
+ bool fadeToColor(uint32 color, Common::Rect *rect = NULL);
- ERRORCODE switchFullscreen();
+ bool switchFullscreen();
- ERRORCODE drawLine(int x1, int y1, int x2, int y2, uint32 color);
+ bool drawLine(int x1, int y1, int x2, int y2, uint32 color);
CBImage *takeScreenshot();
@@ -82,7 +82,7 @@ public:
void invalidateTicketsFromSurface(CBSurfaceSDL *surf);
void drawFromTicket(RenderTicket *renderTicket);
- ERRORCODE setViewport(int left, int top, int right, int bottom);
+ bool setViewport(int left, int top, int right, int bottom);
void modTargetRect(Common::Rect *rect);
void pointFromScreen(Point32 *point);