diff options
author | Max Horn | 2005-05-09 12:27:31 +0000 |
---|---|---|
committer | Max Horn | 2005-05-09 12:27:31 +0000 |
commit | a67144f72f417de8a76ad4e8a25f60106fee48aa (patch) | |
tree | 0854f50d403f83e3ac78ef7217a549c9661ee1c4 | |
parent | 9bfc9281a1dfedaa6b7a7c4889c94b49b45f6944 (diff) | |
download | scummvm-rg350-a67144f72f417de8a76ad4e8a25f60106fee48aa.tar.gz scummvm-rg350-a67144f72f417de8a76ad4e8a25f60106fee48aa.tar.bz2 scummvm-rg350-a67144f72f417de8a76ad4e8a25f60106fee48aa.zip |
Either document all params or none, anything inbetween causes Doxygen to complain loudly
svn-id: r18001
-rw-r--r-- | saga/transitions.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/saga/transitions.cpp b/saga/transitions.cpp index f93ace727e..bb252cf416 100644 --- a/saga/transitions.cpp +++ b/saga/transitions.cpp @@ -26,10 +26,10 @@ namespace Saga { -/*! @brief dissolve one image with another - - @param flags if set to 1, do zero masking -*/ +/** + * Dissolve one image with another. + * If flags if set to 1, do zero masking. + */ int SagaEngine::transitionDissolve(byte *dst_img, int dst_w, int dst_h, int dst_p, const byte *src_img, int src_w, int src_h, int src_p, int flags, int x, int y, double percent) { |