Fixed missing breaks in switch in vgaterminal.cpp.

This commit is contained in:
Jonas 'Sortie' Termansen 2011-11-02 11:39:02 +01:00
parent 2afe9d1fd6
commit 2db3c902fb
1 changed files with 2 additions and 0 deletions

View File

@ -442,6 +442,7 @@ namespace Sortix
showcursor = false;
UpdateCursor();
}
break;
}
// Show cursor.
case 'h':
@ -452,6 +453,7 @@ namespace Sortix
showcursor = true;
UpdateCursor();
}
break;
}
// TODO: Handle other cases.
}