- Added auto-detection for EGA graphics. As a result of this, GF_SCI1_EGA has been removed and versions SCI_VERSION_01_EGA and SCI_VERSION_01_VGA have been merged into SCI_VERSION_01
- Simplified the checks for EGA and VGA graphics - Fixed a bug in script_adjust_opcode_formats() - Simplified the code in GfxResManager::getView() a bit svn-id: r42206
This commit is contained in:
parent
b50b5ae5a4
commit
c716e43a2b
18 changed files with 116 additions and 123 deletions
|
@ -91,9 +91,8 @@ opcode_format g_opcode_formats[128][4] = {
|
|||
void script_adjust_opcode_formats(int res_version) {
|
||||
switch (res_version) {
|
||||
case SCI_VERSION_0:
|
||||
case SCI_VERSION_01_EGA:
|
||||
break;
|
||||
case SCI_VERSION_01_VGA:
|
||||
case SCI_VERSION_01:
|
||||
case SCI_VERSION_01_VGA_ODD:
|
||||
case SCI_VERSION_1:
|
||||
case SCI_VERSION_1_1:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue