mirror of
https://github.com/cy384/ssheven.git
synced 2026-05-15 06:05:53 -06:00
fix missed variable renames
This commit is contained in:
parent
9ec71d898a
commit
d1e0581397
1 changed files with 4 additions and 4 deletions
|
|
@ -479,13 +479,13 @@ void draw_screen_color(Rect* r)
|
|||
{
|
||||
if (run_inverted)
|
||||
{
|
||||
BackColor(idx2qd[fg]);
|
||||
ForeColor(idx2qd[bg]);
|
||||
BackColor(idx2qd[run_fg]);
|
||||
ForeColor(idx2qd[run_bg]);
|
||||
}
|
||||
else
|
||||
{
|
||||
BackColor(idx2qd[bg]);
|
||||
ForeColor(idx2qd[fg]);
|
||||
BackColor(idx2qd[run_bg]);
|
||||
ForeColor(idx2qd[run_fg]);
|
||||
}
|
||||
|
||||
EraseRect(&run_rect);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue