mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
Remove duplicate fcs field
svn-id: r21326
This commit is contained in:
parent
5b3b3b21e3
commit
ec05842572
@ -90,8 +90,7 @@ struct FillOrCopyStruct {
|
||||
uint16 x, y;
|
||||
uint16 width, height;
|
||||
uint16 textColumn, textRow;
|
||||
uint16 scrollY;
|
||||
uint8 textColumnOffset, textLength, textMaxLength;
|
||||
uint16 textColumnOffset, textLength, textMaxLength;
|
||||
uint8 fill_color, text_color, unk5;
|
||||
FillOrCopyData *fcs_data;
|
||||
FillOrCopyStruct() { memset(this, 0, sizeof(*this)); }
|
||||
|
@ -37,7 +37,7 @@ void SimonEngine::hyperLinkOn(uint16 x)
|
||||
_hyperLink = x;
|
||||
_variableArray[50] = _textWindow->textColumn+_textWindow->x;
|
||||
_variableArray[51] = _textWindow->textRow+_textWindow->y+
|
||||
(_oracleMaxScrollY - _textWindow->scrollY) * 15;
|
||||
(_oracleMaxScrollY - _textWindow->textColumnOffset) * 15;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user