1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 16:57:45 +02:00

INSTALL.md should reflect how you build on OSX now.

This commit is contained in:
rlt3 2013-08-02 14:05:23 -04:00
parent 3a0e85fc5f
commit 84775df888

4
main.c
View File

@ -304,10 +304,10 @@ int main(int argc, char* argv[]) {
ch = getch();
if(ch == '\t') {
w_active = (w_active + 1) % w_num;
}
}
else if(ch == KEY_BTAB) {
w_active = (w_active + w_num - 1) % w_num;
}
}
else if(ch != ERR) {
a->onKey(a, ch);
}