mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-10-14 02:17:36 +08:00
update CHANGELOG
This commit is contained in:
11
CHANGELOG
11
CHANGELOG
@@ -1,7 +1,8 @@
|
||||
0.83.20
|
||||
- Added IMGSWAP command to swap disks for drives.
|
||||
e.g. "IMGSWAP A 2" to swap A: drive to the 2nd
|
||||
swap position. (Wengier)
|
||||
e.g. "IMGSWAP D" to swap C: drive to the next swap
|
||||
position, and "IMGSWAP A 3" to swap A: drive to
|
||||
the 3nd swap position. (Wengier)
|
||||
- The CAPMOUSE command without a paramter now shows
|
||||
whether the mouse is captured/released. (Wengier)
|
||||
- The command "config -set" is now case-insensitive
|
||||
@@ -34,9 +35,9 @@
|
||||
- Added ability to change floppy images with drive
|
||||
number (0 or 1) only. (Wengier)
|
||||
- Added menu item "Enable extended Chinese character
|
||||
set" in "TTF options" to toggle the setting for the
|
||||
Simplified Chinese (GBK extension) and Traditional
|
||||
Chinese (ChinaSea extension). (Wengier)
|
||||
set" in "Video" => "TTF options" to toggle setting
|
||||
for the Simplified Chinese (GBK extension) and
|
||||
Traditional Chinese (ChinaSea extension). (Wengier)
|
||||
- Added config option "chinasea" (in [ttf] section)
|
||||
which when set to "true" allows ChinaSea (中國海字集)
|
||||
extension of the Big5 charset for the Traditional
|
||||
|
@@ -4039,7 +4039,7 @@ static void VGA_VerticalTimer(Bitu /*val*/) {
|
||||
if (!boxdefault && col<ttf.cols-3) {
|
||||
if (CheckBoxDrawing((uint8_t)((*draw).chr), (uint8_t)*(vidmem+2), (uint8_t)*(vidmem+4), (uint8_t)*(vidmem+6)))
|
||||
bd[col]=bd[col+1]=bd[col+2]=bd[col+3]=true;
|
||||
else if (col == ttf.cols - 6 && (uint8_t)((*draw).chr) == 205 && (uint8_t)*(vidmem+2) == 91 && (uint8_t)*(vidmem+6) == 93 && (uint8_t)*(vidmem+8) == 205)
|
||||
else if (ttf.cols >= 80 && col == 80-6 && (uint8_t)((*draw).chr) == 205 && (uint8_t)*(vidmem+2) == 91 && (uint8_t)*(vidmem+6) == 93 && (uint8_t)*(vidmem+8) == 205)
|
||||
bd[col]=bd[col+1]=bd[col+2]=bd[col+3]=bd[col+4]=true;
|
||||
else if (!bd[col])
|
||||
boxdefault=true;
|
||||
@@ -4119,7 +4119,7 @@ static void VGA_VerticalTimer(Bitu /*val*/) {
|
||||
if (!boxdefault && col<ttf.cols-3) {
|
||||
if (CheckBoxDrawing((uint8_t)((*draw).chr), (uint8_t)*(vidmem+1), (uint8_t)*(vidmem+2), (uint8_t)*(vidmem+3)))
|
||||
bd[col]=bd[col+1]=bd[col+2]=bd[col+3]=true;
|
||||
else if (col == ttf.cols - 6 && (uint8_t)((*draw).chr) == 205 && (uint8_t)*(vidmem+1) == 91 && (uint8_t)*(vidmem+3) == 93 && (uint8_t)*(vidmem+4) == 205)
|
||||
else if (ttf.cols >= 80 && col == 80-6 && (uint8_t)((*draw).chr) == 205 && (uint8_t)*(vidmem+1) == 91 && (uint8_t)*(vidmem+3) == 93 && (uint8_t)*(vidmem+4) == 205)
|
||||
bd[col]=bd[col+1]=bd[col+2]=bd[col+3]=bd[col+4]=true;
|
||||
else if (!bd[col])
|
||||
boxdefault=true;
|
||||
|
Reference in New Issue
Block a user