Make Infoscreens the correct height

This commit is contained in:
Daniel Lange
2021-01-11 12:53:07 +01:00
parent 8502f4e64f
commit 1ffe5d79bd
4 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@
EnvScreen* EnvScreen_new(Process* process) {
EnvScreen* this = xMalloc(sizeof(EnvScreen));
Object_setClass(this, Class(EnvScreen));
return (EnvScreen*) InfoScreen_init(&this->super, process, NULL, LINES - 3, " ");
return (EnvScreen*) InfoScreen_init(&this->super, process, NULL, LINES - 2, " ");
}
void EnvScreen_delete(Object* this) {