From e46ba2f29ff20a317e708d15dc5be904cdf005eb Mon Sep 17 00:00:00 2001 From: Max Horn Date: Mon, 15 Mar 2004 00:45:45 +0000 Subject: Added OSystem::getDefaultGraphicsMode(); renamed OSystem::get_height() and get_width() to getHeight and getWidth(); augmented some doxygen comments in common/system.h svn-id: r13284 --- backends/morphos/morphos.cpp | 4 ++-- backends/morphos/morphos.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'backends/morphos') diff --git a/backends/morphos/morphos.cpp b/backends/morphos/morphos.cpp index 8b48e542dc..d8c00e3d4e 100644 --- a/backends/morphos/morphos.cpp +++ b/backends/morphos/morphos.cpp @@ -1567,12 +1567,12 @@ void OSystem_MorphOS::initSize(uint w, uint h) CreateScreen(CSDSPTYPE_KEEP); } -int16 OSystem_MorphOS::get_width() +int16 OSystem_MorphOS::getWidth() { return ScummScrWidth; } -int16 OSystem_MorphOS::get_height() +int16 OSystem_MorphOS::getHeight() { return ScummScrHeight; } diff --git a/backends/morphos/morphos.h b/backends/morphos/morphos.h index 6ce4413641..6e606c61ff 100644 --- a/backends/morphos/morphos.h +++ b/backends/morphos/morphos.h @@ -75,8 +75,8 @@ class OSystem_MorphOS : public OSystem virtual void clear_overlay(); virtual void grab_overlay(int16 *buf, int pitch); virtual void copy_rect_overlay(const int16 *buf, int pitch, int x, int y, int w, int h); - virtual int16 get_height(); - virtual int16 get_width(); + virtual int16 getHeight(); + virtual int16 getWidth(); // Get the number of milliseconds since the program was started. virtual uint32 get_msecs(); -- cgit v1.2.3