diff options
author | Max Horn | 2004-03-15 00:45:45 +0000 |
---|---|---|
committer | Max Horn | 2004-03-15 00:45:45 +0000 |
commit | e46ba2f29ff20a317e708d15dc5be904cdf005eb (patch) | |
tree | 994a9ccd5999a054ba285d2c63e549df03036b27 /backends/dc | |
parent | b585b9ac4b2772ed7cddb12cc4435b40f0ddf21f (diff) | |
download | scummvm-rg350-e46ba2f29ff20a317e708d15dc5be904cdf005eb.tar.gz scummvm-rg350-e46ba2f29ff20a317e708d15dc5be904cdf005eb.tar.bz2 scummvm-rg350-e46ba2f29ff20a317e708d15dc5be904cdf005eb.zip |
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
Diffstat (limited to 'backends/dc')
-rw-r--r-- | backends/dc/dc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/dc/dc.h b/backends/dc/dc.h index d18c722f32..8fa314baf5 100644 --- a/backends/dc/dc.h +++ b/backends/dc/dc.h @@ -64,8 +64,8 @@ class OSystem_Dreamcast : public OSystem { // Set the size of the video bitmap. // Typically, 320x200 void initSize(uint w, uint h); - int16 get_height() { return _screen_h; } - int16 get_width() { return _screen_w; } + int16 getHeight() { return _screen_h; } + int16 getWidth() { return _screen_w; } // Draw a bitmap to screen. // The screen will not be updated to reflect the new bitmap |