Fix spinner in prev commit

This commit is contained in:
Howard Chu 2009-02-05 10:07:20 +00:00
parent d0515c4017
commit bc486f123d

View file

@ -245,7 +245,7 @@ text_update (
{
/* spinner */
static const int phase_mod = 8;
static const char phase_char[] = "_.oO*^'^*Oo.";
static const char phase_char[] = "_.-*\"*-.";
*buf++ = phase_char[data->phase % phase_mod];
data->phase++;
}