diff options
author | Marcus Comstedt | 2004-03-15 23:10:35 +0000 |
---|---|---|
committer | Marcus Comstedt | 2004-03-15 23:10:35 +0000 |
commit | 01d41e124951227ea6b6d697de3f21776bce8458 (patch) | |
tree | 3a152d9f16a1be7898fd5b20b493b1db828e1493 /backends/dc | |
parent | ff17962df529691bc35d43dd90a3eff67a356bd1 (diff) | |
download | scummvm-rg350-01d41e124951227ea6b6d697de3f21776bce8458.tar.gz scummvm-rg350-01d41e124951227ea6b6d697de3f21776bce8458.tar.bz2 scummvm-rg350-01d41e124951227ea6b6d697de3f21776bce8458.zip |
"int GraphicsMode *" was a rather creative type... :)
svn-id: r13313
Diffstat (limited to 'backends/dc')
-rw-r--r-- | backends/dc/display.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/dc/display.cpp b/backends/dc/display.cpp index beeffed3fe..7a5ff6bbf0 100644 --- a/backends/dc/display.cpp +++ b/backends/dc/display.cpp @@ -575,7 +575,7 @@ const OSystem::GraphicsMode *OSystem_Dreamcast::getSupportedGraphicsModes() cons return gfxmodes; } -int GraphicsMode *OSystem_Dreamcast::getDefaultGraphicsMode() const +int OSystem_Dreamcast::getDefaultGraphicsMode() const { return 0; } |