Add correct palette for pc versions of v1 games
Add some correct colors for v1 games svn-id: r8988
This commit is contained in:
parent
8ba41ba5e0
commit
ffddfd76d9
5 changed files with 92 additions and 4 deletions
|
@ -827,9 +827,15 @@ void Scumm_v2::o2_verbOps() {
|
|||
|
||||
vs = &_verbs[slot];
|
||||
vs->verbid = verb;
|
||||
vs->color = 2;
|
||||
vs->hicolor = 14;
|
||||
vs->dimcolor = 8;
|
||||
if (_version == 1) {
|
||||
vs->color = 5;
|
||||
vs->hicolor = 7;
|
||||
vs->dimcolor = 11;
|
||||
} else {
|
||||
vs->color = 2;
|
||||
vs->hicolor = 14;
|
||||
vs->dimcolor = 8;
|
||||
}
|
||||
vs->type = kTextVerbType;
|
||||
vs->charset_nr = _string[0].t_charset;
|
||||
vs->curmode = 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue