mirror of https://github.com/stella-emu/stella.git
Oops, forgot to include disassembly glyph in the 'large' debugger font.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2792 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
465cc76769
commit
aaba21cc77
|
@ -32,9 +32,9 @@
|
||||||
size: 95
|
size: 95
|
||||||
ascent: 14
|
ascent: 14
|
||||||
descent: 4
|
descent: 4
|
||||||
first char: 32 (0x20)
|
first char: 30 (0x1e)
|
||||||
last char: 126 (0x7e)
|
last char: 126 (0x7e)
|
||||||
default char: 32 (0x20)
|
default char: 30 (0x1e)
|
||||||
proportional: no
|
proportional: no
|
||||||
Public domain font. Share and enjoy.
|
Public domain font. Share and enjoy.
|
||||||
*/
|
*/
|
||||||
|
@ -44,6 +44,96 @@ namespace GUI {
|
||||||
// Font character bitmap data.
|
// Font character bitmap data.
|
||||||
static const uInt16 stellaMedium_font_bits[] = {
|
static const uInt16 stellaMedium_font_bits[] = {
|
||||||
|
|
||||||
|
/* MODIFIED
|
||||||
|
Character 30 (0x1e): large centered rounded rectangle
|
||||||
|
width 9
|
||||||
|
bbx ( 9, 15, 0, -3 )
|
||||||
|
|
||||||
|
+---------+
|
||||||
|
| ***** |
|
||||||
|
| ******* |
|
||||||
|
| ******* |
|
||||||
|
| ******* |
|
||||||
|
| ******* |
|
||||||
|
| ******* |
|
||||||
|
| ******* |
|
||||||
|
| ******* |
|
||||||
|
| ******* |
|
||||||
|
| ******* |
|
||||||
|
| ******* |
|
||||||
|
| ******* |
|
||||||
|
| ******* |
|
||||||
|
| ******* |
|
||||||
|
| ******* |
|
||||||
|
| ******* |
|
||||||
|
| ******* |
|
||||||
|
| ***** |
|
||||||
|
+---------+
|
||||||
|
*/
|
||||||
|
0x3e00,
|
||||||
|
0x7f00,
|
||||||
|
0x7f00,
|
||||||
|
0x7f00,
|
||||||
|
0x7f00,
|
||||||
|
0x7f00,
|
||||||
|
0x7f00,
|
||||||
|
0x7f00,
|
||||||
|
0x7f00,
|
||||||
|
0x7f00,
|
||||||
|
0x7f00,
|
||||||
|
0x7f00,
|
||||||
|
0x7f00,
|
||||||
|
0x7f00,
|
||||||
|
0x7f00,
|
||||||
|
0x7f00,
|
||||||
|
0x7f00,
|
||||||
|
0x3e00,
|
||||||
|
|
||||||
|
/* MODIFIED
|
||||||
|
Character 31 (0x1f): large centered circle
|
||||||
|
width 9
|
||||||
|
bbx ( 9, 15, 0, -3 )
|
||||||
|
|
||||||
|
+---------+
|
||||||
|
| |
|
||||||
|
| |
|
||||||
|
| |
|
||||||
|
| |
|
||||||
|
| |
|
||||||
|
| *** |
|
||||||
|
| ***** |
|
||||||
|
| ******* |
|
||||||
|
| ******* |
|
||||||
|
| ******* |
|
||||||
|
| ******* |
|
||||||
|
| ***** |
|
||||||
|
| *** |
|
||||||
|
| |
|
||||||
|
| |
|
||||||
|
| |
|
||||||
|
| |
|
||||||
|
| |
|
||||||
|
+---------+
|
||||||
|
*/
|
||||||
|
0x0000,
|
||||||
|
0x0000,
|
||||||
|
0x0000,
|
||||||
|
0x0000,
|
||||||
|
0x0000,
|
||||||
|
0x1c00,
|
||||||
|
0x3e00,
|
||||||
|
0x7f00,
|
||||||
|
0x7f00,
|
||||||
|
0x7f00,
|
||||||
|
0x7f00,
|
||||||
|
0x3e00,
|
||||||
|
0x1c00,
|
||||||
|
0x0000,
|
||||||
|
0x0000,
|
||||||
|
0x0000,
|
||||||
|
0x0000,
|
||||||
|
0x0000,
|
||||||
|
|
||||||
/* Character 32 (0x20):
|
/* Character 32 (0x20):
|
||||||
width 9
|
width 9
|
||||||
bbx ( 9, 18, 0, -4 )
|
bbx ( 9, 18, 0, -4 )
|
||||||
|
@ -4232,13 +4322,13 @@ static const FontDesc stellaMediumDesc = {
|
||||||
18,
|
18,
|
||||||
9, 18, 0, -4,
|
9, 18, 0, -4,
|
||||||
14,
|
14,
|
||||||
32,
|
30,
|
||||||
95,
|
97,
|
||||||
stellaMedium_font_bits,
|
stellaMedium_font_bits,
|
||||||
0, /* no encode table*/
|
0, /* no encode table*/
|
||||||
0, /* fixed width*/
|
0, /* fixed width*/
|
||||||
0, /* fixed bbox*/
|
0, /* fixed bbox*/
|
||||||
32,
|
32, // Originally 30
|
||||||
sizeof(stellaMedium_font_bits)/sizeof(uInt16)
|
sizeof(stellaMedium_font_bits)/sizeof(uInt16)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue