diff options
Diffstat (limited to '')
-rw-r--r-- | src/screen.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/screen.h b/src/screen.h index 8f95d7a86..fe6b394a3 100644 --- a/src/screen.h +++ b/src/screen.h @@ -3,10 +3,6 @@ #include <ncurses.h> #include "list_window.h" -/* minumum window size */ -#define SCREEN_MIN_COLS 14 -#define SCREEN_MIN_ROWS 5 - #define IS_PLAYING(s) (s==MPD_STATUS_STATE_PLAY) #define IS_PAUSED(s) (s==MPD_STATUS_STATE_PAUSE) #define IS_STOPPED(s) (!(IS_PLAYING(s) | IS_PAUSED(s))) @@ -34,7 +30,6 @@ typedef struct int cols, rows; - //screen_mode_t mode; int mode; char *buf; |