Minor updates to userspace apps

This commit is contained in:
Kevin Lange 2012-03-07 19:35:15 -06:00
parent f3f0a58b95
commit a9519bd18a
2 changed files with 3 additions and 5 deletions

View File

@ -231,10 +231,6 @@ int main(int argc, char ** argv) {
} }
} while (kbd != NULL); } while (kbd != NULL);
if (ch) {
printf("Key press: '%c'\n", ch);
}
switch (ch) { switch (ch) {
case 'q': case 'q':
playing = 0; playing = 0;

View File

@ -21,6 +21,8 @@
#define SYM_COLOR "" #define SYM_COLOR ""
#define BROKEN_COLOR "1;" #define BROKEN_COLOR "1;"
#define DEFAULT_TERM_WIDTH 80
/* Shit that belongs as a separate data structure */ /* Shit that belongs as a separate data structure */
@ -377,7 +379,7 @@ int main (int argc, char * argv[]) {
ent_max_len = max(ent_max_len, strlen(ents_array[i]->name)); ent_max_len = max(ent_max_len, strlen(ents_array[i]->name));
} }
const int term_width = 128; // For now, we assume 128 const int term_width = DEFAULT_TERM_WIDTH; // For now, we assume 128
int col_ext = ent_max_len + MIN_COL_SPACING; int col_ext = ent_max_len + MIN_COL_SPACING;
int cols = ((term_width - ent_max_len) / col_ext) + 1; int cols = ((term_width - ent_max_len) / col_ext) + 1;