aboutsummaryrefslogtreecommitdiff
path: root/saga/cvar.h
diff options
context:
space:
mode:
Diffstat (limited to 'saga/cvar.h')
-rw-r--r--saga/cvar.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/saga/cvar.h b/saga/cvar.h
index f63d6cd88d..f030eac989 100644
--- a/saga/cvar.h
+++ b/saga/cvar.h
@@ -61,7 +61,7 @@ struct R_SUBCVAR_FUNC {
int max_args;
};
-typedef struct R_CVAR_tag {
+struct R_CVAR {
int type;
const char *name;
const char *section;
@@ -76,9 +76,9 @@ typedef struct R_CVAR_tag {
R_SUBCVAR_FUNC func;
} t;
- struct R_CVAR_tag *next;
+ R_CVAR *next;
-} R_CVAR;
+};
} // End of namespace Saga