aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2003-07-06 23:48:17 +0000
committerMax Horn2003-07-06 23:48:17 +0000
commit3dca18c935682746545f219e715a46fd4cc10852 (patch)
tree78ea67de0f83e92a7ebad17f7289e2365b07dedb
parent70973f69be738aff81fcc70bbecf7804812bad3c (diff)
downloadscummvm-rg350-3dca18c935682746545f219e715a46fd4cc10852.tar.gz
scummvm-rg350-3dca18c935682746545f219e715a46fd4cc10852.tar.bz2
scummvm-rg350-3dca18c935682746545f219e715a46fd4cc10852.zip
cleanup this doxygen comment (li and arg are the same; we are using autobrief; don't mix the JavaDoc and Qt styles; don't duplicate the function signature, there is no need for that and it gets out of sync (as in this case)
svn-id: r8823
-rw-r--r--sky/logic.cpp12
1 files changed, 5 insertions, 7 deletions
diff --git a/sky/logic.cpp b/sky/logic.cpp
index 7a3607a3d5..b02be8c8ca 100644
--- a/sky/logic.cpp
+++ b/sky/logic.cpp
@@ -1164,14 +1164,12 @@ uint16 SkyLogic::mouseScript(uint32 scrNum, Compact *scriptComp) {
};
/**
- * \fn uint32 SkyLogic::script(uint16 scriptNo, uint16 offset)
- * \brief This is the actual script engine.
- * It interprets script \a scriptNo starting at \a offset
+ * This is the actual script engine. It interprets script \a scriptNo starting at \a offset
*
- * \param scriptNo The script to interpret.
- * \li \arg Bits 0-11 - Script number
- * \li \arg Bits 12-15 - Module number
- * \param offset At which offset to start interpreting the script.
+ * @param scriptNo The script to interpret.
+ * @arg Bits 0-11 - Script number
+ * @arg Bits 12-15 - Module number
+ * @param offset At which offset to start interpreting the script.
*
* @return 0 if script finished. Else offset where to continue.
*/