interface update to client_test

This commit is contained in:
Arvid Norberg
2007-05-09 20:06:53 +00:00
parent 4371dbe02c
commit d7ed474a46

View File

@@ -987,11 +987,11 @@ int main(int ac, char* av[])
out << esc("33;7") << str << esc("0"); out << esc("33;7") << str << esc("0");
else if (i->finished_blocks[j]) out << esc("32;7") << str << esc("0"); else if (i->finished_blocks[j]) out << esc("32;7") << str << esc("0");
else if (i->requested_blocks[j]) out << str; else if (i->requested_blocks[j]) out << str;
else out << "-"; else out << " ";
#else #else
if (i->finished_blocks[j]) out << "#"; if (i->finished_blocks[j]) out << "#";
else if (i->requested_blocks[j]) out << str; else if (i->requested_blocks[j]) out << str;
else out << "-"; else out << " ";
#endif #endif
} }
char* piece_state[4] = {"", "slow", "medium", "fast"}; char* piece_state[4] = {"", "slow", "medium", "fast"};