diff options
author | Johannes Schickel | 2010-01-08 20:15:42 +0000 |
---|---|---|
committer | Johannes Schickel | 2010-01-08 20:15:42 +0000 |
commit | 0849da9564909ab4c283bbfd8dc34cfba3996c0d (patch) | |
tree | 6f06b905b0d4e1e54339e2887b39e6ab1d837e13 | |
parent | 25226cdc23f39fd79c472342fcf84df90cb5ebc7 (diff) | |
download | scummvm-rg350-0849da9564909ab4c283bbfd8dc34cfba3996c0d.tar.gz scummvm-rg350-0849da9564909ab4c283bbfd8dc34cfba3996c0d.tar.bz2 scummvm-rg350-0849da9564909ab4c283bbfd8dc34cfba3996c0d.zip |
Fix documentation for setMouseCursor's format paramenter.
svn-id: r47173
-rw-r--r-- | common/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/system.h b/common/system.h index 9b136fde35..5139a16862 100644 --- a/common/system.h +++ b/common/system.h @@ -779,7 +779,7 @@ public: * In case it does the behavior is undefined. The backend might just error out or simply ignore the * value. (The SDL backend will just assert to prevent abuse of this). * @param cursorTargetScale scale factor which cursor is designed for - * @param format pointer to the pixel format which cursor graphic uses (0 means screen format) + * @param format pointer to the pixel format which cursor graphic uses (0 means CLUT8) */ virtual void setMouseCursor(const byte *buf, uint w, uint h, int hotspotX, int hotspotY, uint32 keycolor, int cursorTargetScale = 1, const Graphics::PixelFormat *format = NULL) = 0; |