mirror of
https://github.com/cc65/cc65.git
synced 2025-02-01 09:30:10 +00:00
The 128+x character codes were very likely intended to be interpreted by cputs and translated into explicit drawing of short lines. However there was no code to do so at all. Given that the emulation of a characterbased API on a graphics system isn't the premier choice for a sophisticated UI it doesn't seem appropriate to invest into actually implementing the approach described above. Therefore I just replaced the character codes with a '+'.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5862 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
590e382a2b
commit
74fb91a3a2
@ -67,21 +67,15 @@
|
|||||||
#include <geos/gdlgbox.h>
|
#include <geos/gdlgbox.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Character codes $80-$8F */
|
#define CH_ULCORNER '+'
|
||||||
/* 1 */
|
#define CH_URCORNER '+'
|
||||||
/* 2 4 */
|
#define CH_LLCORNER '+'
|
||||||
/* 8 */
|
#define CH_LRCORNER '+'
|
||||||
#define CH_HLINE 128|0|2|4|0
|
#define CH_TTEE '+'
|
||||||
#define CH_VLINE 128|1|0|0|8
|
#define CH_RTEE '+'
|
||||||
#define CH_ULCORNER 128|1|2|0|0
|
#define CH_BTEE '+'
|
||||||
#define CH_URCORNER 128|1|0|4|0
|
#define CH_LTEE '+'
|
||||||
#define CH_LLCORNER 128|0|2|0|8
|
#define CH_CROSS '+'
|
||||||
#define CH_LRCORNER 128|0|0|4|8
|
|
||||||
#define CH_TTEE 128|1|2|4|0
|
|
||||||
#define CH_RTEE 128|1|0|4|8
|
|
||||||
#define CH_BTEE 128|0|2|4|8
|
|
||||||
#define CH_LTEE 128|1|2|0|8
|
|
||||||
#define CH_CROSS 128|1|2|4|8
|
|
||||||
|
|
||||||
/* Additional key defines */
|
/* Additional key defines */
|
||||||
#define CH_F1 133
|
#define CH_F1 133
|
||||||
|
Loading…
x
Reference in New Issue
Block a user