aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/alan3/glkstart.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/alan3/glkstart.h')
-rw-r--r--engines/glk/alan3/glkstart.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/glk/alan3/glkstart.h b/engines/glk/alan3/glkstart.h
index 4420bea2f9..2bc2e9c9dc 100644
--- a/engines/glk/alan3/glkstart.h
+++ b/engines/glk/alan3/glkstart.h
@@ -60,9 +60,9 @@ namespace Alan3 {
#define glkunix_arg_NumberValue (4)
struct glkunix_argumentlist_t {
- char *name;
+ const char *name;
int argtype;
- char *desc;
+ const char *desc;
};
struct glkunix_startup_t {
@@ -71,7 +71,7 @@ struct glkunix_startup_t {
};
/* The list of command-line arguments; this should be defined in your code. */
-extern glkunix_argumentlist_t glkunix_arguments[];
+extern const glkunix_argumentlist_t glkunix_arguments[];
/* The external function; this should be defined in your code. */
extern int glkunix_startup_code(glkunix_startup_t *data);