SCI: Keep a single copy of the versionNames array; this fixes warning about it (well, one of its many copies) being unused
svn-id: r40600
This commit is contained in:
parent
9c44705f05
commit
d8d18d14ef
2 changed files with 14 additions and 11 deletions
|
@ -43,6 +43,19 @@ namespace Sci {
|
|||
|
||||
extern gfx_driver_t gfx_driver_scummvm;
|
||||
|
||||
const char *versionNames[9] = {
|
||||
"Autodetected",
|
||||
"SCI0",
|
||||
"SCI01 EGA",
|
||||
"SCI01 VGA",
|
||||
"SCI01 VGA ODD",
|
||||
"SCI1 early",
|
||||
"SCI1 late",
|
||||
"SCI1.1",
|
||||
"SCI32"
|
||||
};
|
||||
|
||||
|
||||
int c_quit(EngineState *s, const Common::Array<cmd_param_t> &cmdParams) {
|
||||
script_abort_flag = 1; // Terminate VM
|
||||
_debugstate_valid = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue