aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/mpal/expr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/tony/mpal/expr.cpp')
-rw-r--r--engines/tony/mpal/expr.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/tony/mpal/expr.cpp b/engines/tony/mpal/expr.cpp
index 52751120f6..c2fadd63df 100644
--- a/engines/tony/mpal/expr.cpp
+++ b/engines/tony/mpal/expr.cpp
@@ -42,6 +42,7 @@ namespace MPAL {
/**
* @defgroup Mathamatical operations
*/
+//@{
#define OP_MUL ((1 << 4) | 0)
#define OP_DIV ((1 << 4) | 1)
@@ -73,9 +74,12 @@ enum ExprListTypes {
ELT_PARENTH2 = 4
};
+//@}
+
/**
* @defgroup Structures
*/
+//@{
/**
* Mathamatical framework to manage operations
@@ -96,6 +100,7 @@ typedef struct {
} EXPRESSION;
typedef EXPRESSION *LPEXPRESSION;
+//@}
/**
* Duplicate a mathematical expression.