[GB.FORM.TERMINAL]
* BUG: Invert Foreground and Background on 256 mode. But i don't know why. git-svn-id: svn://localhost/gambas/trunk@7680 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
parent
a6e5567815
commit
aa44a876a8
1 changed files with 2 additions and 2 deletions
|
@ -227,12 +227,12 @@ Private Sub Escape(hScreen As TerminalScreen, sData As String, iPos As Integer,
|
|||
hScreen.Attr.Background = iArg - 100
|
||||
Case 38
|
||||
If aArg.Count = 3 And If aArg[1] = "5" Then
|
||||
Try hScreen.Attr.BackGround = CInt(aArg[2])
|
||||
Try hScreen.Attr.Foreground = CInt(aArg[2])
|
||||
Break
|
||||
Endif
|
||||
Case 48
|
||||
If aArg.Count = 3 And If aArg[1] = "5" Then
|
||||
Try hScreen.Attr.Foreground = CInt(aArg[2])
|
||||
Try hScreen.Attr.Background = CInt(aArg[2])
|
||||
Break
|
||||
Endif
|
||||
' Case 38
|
||||
|
|
Loading…
Reference in a new issue