fix dumb print bug

This commit is contained in:
cy384 2020-08-05 22:30:06 -04:00
parent e4123f41e3
commit 99373cedc4
1 changed files with 0 additions and 5 deletions

View File

@ -177,11 +177,6 @@ void printf_i(const char* str, ...)
break;
}
}
else if (*str == '\\')
{
str++;
print_char(*str);
}
else
{
print_char(*str);