Fixed issue #6

This commit is contained in:
luca0N! 2020-06-28 15:42:27 -03:00
parent db212c1cfd
commit d4fcba2e6f
No known key found for this signature in database
GPG Key ID: 9F1B99B522287CAB
2 changed files with 5 additions and 0 deletions

3
main.c
View File

@ -238,6 +238,9 @@ void getAdditionalDirs(bool safeMode){
printf(STR_TOTAL_DELETED_GIBIBYTES, gib);
}
setConsoleColor(RESET_CONSOLE_COLOR);
printf(STR_EXIT_PAUSE);
fflush(stdout);
getch();
}
int main(void){

2
str.h
View File

@ -48,4 +48,6 @@
#define STR_ERROR_LIC "Falha ao ler arquivo de licença. Visite <https://www.gnu.org/licenses/> para mais informações.\n"
#define STR_EXIT_PAUSE "Pressione qualquer tecla para sair do programa.\n"
#endif