1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Add sprite font glyphs for Æ and Ø

This commit is contained in:
Michael Steenbeek
2018-07-20 17:32:42 +02:00
parent 136b1e7456
commit c3ed52ffe9
14 changed files with 85 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 185 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 173 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 171 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 235 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 179 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 174 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 210 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 195 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 171 B

View File

@@ -439,5 +439,80 @@
"path": "icons/eyedropper.png",
"x_offset": 5,
"y_offset": 5
},
{
"path": "font/ae-uc-small.png",
"y_offset": 0,
"palette": "keep",
"forceBmp": true
},
{
"path": "font/ae-small.png",
"y_offset": 2,
"palette": "keep",
"forceBmp": true
},
{
"path": "font/o-stroke-uc-small.png",
"x_offset": -1,
"y_offset": 0,
"palette": "keep",
"forceBmp": true
},
{
"path": "font/o-stroke-small.png",
"y_offset": 2,
"palette": "keep",
"forceBmp": true
},
{
"path": "font/ae-uc-bold.png",
"y_offset": 0,
"palette": "keep",
"forceBmp": true
},
{
"path": "font/ae-bold.png",
"y_offset": 2,
"palette": "keep",
"forceBmp": true
},
{
"path": "font/o-stroke-uc-bold.png",
"x_offset": -1,
"y_offset": -1,
"palette": "keep",
"forceBmp": true
},
{
"path": "font/o-stroke-bold.png",
"x_offset": 0,
"y_offset": 2,
"palette": "keep",
"forceBmp": true
},
{
"path": "font/ae-uc-tiny.png",
"y_offset": 0,
"palette": "keep",
"forceBmp": true
},
{
"path": "font/ae-tiny.png",
"y_offset": 1,
"palette": "keep",
"forceBmp": true
},
{
"path": "font/o-stroke-uc-tiny.png",
"y_offset": 0,
"palette": "keep",
"forceBmp": true
},
{
"path": "font/o-stroke-tiny.png",
"y_offset": 1,
"palette": "keep",
"forceBmp": true
}
]

View File

@@ -840,6 +840,16 @@ enum {
SPR_G2_EYEDROPPER = SPR_G2_BEGIN + 123,
SPR_G2_CHAR_BEGIN = SPR_G2_BEGIN + 124,
SPR_G2_AE_UPPER = SPR_G2_CHAR_BEGIN,
SPR_G2_AE_LOWER = SPR_G2_CHAR_BEGIN + 1,
SPR_G2_O_STROKE_UPPER = SPR_G2_CHAR_BEGIN + 2,
SPR_G2_O_STROKE_LOWER = SPR_G2_CHAR_BEGIN + 3,
SPR_G2_CHAR_END = SPR_G2_O_STROKE_LOWER,
SPR_G2_GLYPH_COUNT = (SPR_G2_CHAR_END - SPR_G2_CHAR_BEGIN) + 1,
// 0x60000, chosen because it's a round hex number
// of the last possible range of image ID values that is large enough to fit all csg1 sprites.
SPR_CSG_BEGIN = 393216,