Either document all params or none, anything inbetween causes Doxygen to complain loudly

svn-id: r18001
This commit is contained in:
Max Horn 2005-05-09 12:27:31 +00:00
parent 9bfc9281a1
commit a67144f72f

View File

@ -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) {