diff options
author | Jody Northup | 2009-07-10 10:47:25 +0000 |
---|---|---|
committer | Jody Northup | 2009-07-10 10:47:25 +0000 |
commit | ddcab8169f45055c8272648279c3dd96432ba956 (patch) | |
tree | bdeb19d1695fb99627f142846cf0655ea077c11f | |
parent | bb1da36710b8ddc5dd3d4bbf7414dd20b7a646b3 (diff) | |
download | scummvm-rg350-ddcab8169f45055c8272648279c3dd96432ba956.tar.gz scummvm-rg350-ddcab8169f45055c8272648279c3dd96432ba956.tar.bz2 scummvm-rg350-ddcab8169f45055c8272648279c3dd96432ba956.zip |
updated comment on initGraphics as I should have done before commiting r42330.
svn-id: r42332
-rw-r--r-- | engines/engine.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/engine.h b/engines/engine.h index 0f5585378b..cd39c0065d 100644 --- a/engines/engine.h +++ b/engines/engine.h @@ -61,6 +61,8 @@ void initCommonGFX(bool defaultTo1XScaler); * mode. * * Defaults to 256 color paletted mode if no graphics format is provided. + * Uses the backend's preferred format if graphics format pointer is NULL. + * Finds the best compatible format if a list of graphics formats is provided. */ void initGraphics(int width, int height, bool defaultTo1xScaler); void initGraphics(int width, int height, bool defaultTo1xScaler, const Graphics::PixelFormat *format); |