# HG changeset patch # User David Demelier # Date 1601985199 -7200 # Node ID 365e40e9280073967b38cce27add94f6f5bde681 # Parent 6691c9f69028f5b5e0a8439c0435cb1133fb556b core: update documentation in sprite.h diff -r 6691c9f69028 -r 365e40e92800 libcore/core/sprite.h --- a/libcore/core/sprite.h Tue Oct 06 13:52:52 2020 +0200 +++ b/libcore/core/sprite.h Tue Oct 06 13:53:19 2020 +0200 @@ -31,11 +31,11 @@ * \brief Sprite structure. */ struct sprite { - struct texture *texture; /*!< Texture to access (RO) */ - unsigned int cellw; /*!< Width per cell (RW) */ - unsigned int cellh; /*!< Height per cell (RW) */ - unsigned int nrows; /*!< Number of rows (RW) */ - unsigned int ncols; /*!< Number of columns (RW) */ + struct texture *texture; /*!< (RW) Texture to access (RO) */ + unsigned int cellw; /*!< (RW) Width per cell (RW) */ + unsigned int cellh; /*!< (RW) Height per cell (RW) */ + unsigned int nrows; /*!< (RW) Number of rows (RW) */ + unsigned int ncols; /*!< (RW) Number of columns (RW) */ }; /**