mirror of
https://github.com/irmen/prog8.git
synced 2025-01-11 13:29:45 +00:00
gfx2 screenmode tweak
This commit is contained in:
parent
5f27426f59
commit
c38765301e
@ -55,9 +55,11 @@ gfx2 {
|
||||
}
|
||||
else -> {
|
||||
; back to default text mode
|
||||
cx16.r15L = cx16.VERA_DC_VIDEO & %00000111 ; retain chroma + output mode
|
||||
cbm.CINT()
|
||||
cx16.VERA_DC_VIDEO = (cx16.VERA_DC_VIDEO & %11111000) | cx16.r15L
|
||||
if active_mode!=0 {
|
||||
cx16.r15L = cx16.VERA_DC_VIDEO & %00000111 ; retain chroma + output mode
|
||||
cbm.CINT()
|
||||
cx16.VERA_DC_VIDEO = (cx16.VERA_DC_VIDEO & %11111000) | cx16.r15L
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,6 +1,10 @@
|
||||
TODO
|
||||
====
|
||||
|
||||
short-circuit evaluation problem?
|
||||
in imageviewer: if diskio.f_open(filenameptr) and diskio.f_read(scanline_buf, 2)==2 DOESN'T WORK. (operand order swap maybe???)
|
||||
|
||||
|
||||
...
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user