tidy up intfstream_truncate ifdefs.

This commit is contained in:
Joseph C. Osborn 2024-06-18 09:28:17 -07:00 committed by LibretroAdmin
parent 6104a9ad86
commit e51a316cfd

View File

@ -321,17 +321,9 @@ int64_t intfstream_truncate(intfstream_internal_t *intf, uint64_t len)
case INTFSTREAM_MEMORY:
break;
case INTFSTREAM_CHD:
#ifdef HAVE_CHD
break;
#else
break;
#endif
case INTFSTREAM_RZIP:
#if defined(HAVE_ZLIB)
break;
#else
break;
#endif
}
return 0;