Changed the Toshiba T1000/T1200 init function to load fonts in full 2048-byte mode, fixes #420.

This commit is contained in:
OBattler
2019-10-01 21:36:27 +02:00
parent c7b676dfef
commit 8d28b9e0c5
2 changed files with 6 additions and 6 deletions

View File

@@ -9,7 +9,7 @@
* Implementation of the Toshiba T1000 plasma display, which
* has a fixed resolution of 640x200 pixels.
*
* Version: @(#)m_xt_t1000_vid.c 1.0.11 2019/10/01
* Version: @(#)m_xt_t1000_vid.c 1.0.12 2019/10/01
*
* Authors: Fred N. van Kempen, <decwiz@yahoo.com>
* Miran Grca, <mgrca8@gmail.com>
@@ -678,7 +678,7 @@ static void *t1000_init(const device_t *info)
{
t1000_t *t1000 = malloc(sizeof(t1000_t));
memset(t1000, 0, sizeof(t1000_t));
loadfont(L"roms/machines/t1000/t1000font.bin", 2);
loadfont(L"roms/machines/t1000/t1000font.bin", 8);
cga_init(&t1000->cga);
video_inform(VIDEO_FLAG_TYPE_CGA, &timing_t1000);