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
This commit is contained in:
Max Horn 2004-03-15 00:45:45 +00:00
parent b585b9ac4b
commit e46ba2f29f
12 changed files with 145 additions and 67 deletions

View file

@ -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;
}