Skip to content

Commit

Permalink
adjust fullwidth char length
Browse files Browse the repository at this point in the history
  • Loading branch information
argrath committed Nov 3, 2024
1 parent 8eff794 commit 0687228
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions sys/windows/consoletty.c
Original file line number Diff line number Diff line change
Expand Up @@ -1382,12 +1382,16 @@ xputc2_core(const unsigned char *str)
void
xputc2(const unsigned char *str)
{
int charlen = strlen((const char *)str);
/* wintty.c では 1 バイト毎に curx を加算するが、ここは
n バイトたまってから呼び出されるので、n-1 文字分先に進んで
しまっている。従って n-1 を引く。 */
console.cursor.X = ttyDisplay->curx - (strlen((const char *)str) - 1);
charlen バイトたまってから呼び出されるので、charlen-1 文字分先に進んで
しまっている。従って charlen-1 を引く。 */
console.cursor.X = ttyDisplay->curx - (charlen - 1);
console.cursor.Y = ttyDisplay->cury;

/* 実際に何バイトでも移動するのは 2 バイト分 */
ttyDisplay->curx -= charlen - 2;

xputc2_core(str);
}
#endif
Expand Down

0 comments on commit 0687228

Please sign in to comment.