Fix iso_drive comparation

This commit is contained in:
Marcel Alexandru Nitan
2023-07-30 01:13:48 +03:00
parent 88187197c4
commit 7a3c1979e6

View File

@@ -36,7 +36,7 @@ void configs(char *iso_target, char *cdrom, char *ro) {
}
void usb(char *iso_target) {
if (strcmp(iso_target, (char *)""))
if (strcmp(iso_target, (char *)"") == 0)
usb_reset_iso();
else
usb_mount_iso(iso_target);