diff options
author | Max Horn | 2009-02-21 22:06:42 +0000 |
---|---|---|
committer | Max Horn | 2009-02-21 22:06:42 +0000 |
commit | 8430b662a99d96100fbeb3428a61595444fc3526 (patch) | |
tree | 2c0421af6635c6496905d6fb95c8e9de2a0487c4 /engines/sci/include/sciconsole.h | |
parent | da190b30fcf79edb14b58e560b243f797fb17820 (diff) | |
download | scummvm-rg350-8430b662a99d96100fbeb3428a61595444fc3526.tar.gz scummvm-rg350-8430b662a99d96100fbeb3428a61595444fc3526.tar.bz2 scummvm-rg350-8430b662a99d96100fbeb3428a61595444fc3526.zip |
SCI: Changed typedef struct -> struct
svn-id: r38752
Diffstat (limited to 'engines/sci/include/sciconsole.h')
-rw-r--r-- | engines/sci/include/sciconsole.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/include/sciconsole.h b/engines/sci/include/sciconsole.h index c3b93a4671..8888e5927d 100644 --- a/engines/sci/include/sciconsole.h +++ b/engines/sci/include/sciconsole.h @@ -51,11 +51,11 @@ extern FILE *con_file; ** directly to the con_file variable. */ -typedef union { +union cmd_param_t { int32 val; char *str; reg_t reg; -} cmd_param_t; +}; extern unsigned int cmd_paramlength; /* The number of parameters passed to a function called from the parser */ |