Reset colors when exited from standalone mode

This commit is contained in:
Kevin Lange 2011-12-04 13:48:33 -06:00
parent 18d47f079e
commit 48ec643ed1
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ int digits(int val) {
* (^C) so that we can restore the cursor.
*/
void SIGINT_handler(int sig){
printf("\033[?25h");
printf("\033[?25h\033[0m");
exit(0);
}