diff --git a/libretro-common/file/archive_file_7z.c b/libretro-common/file/archive_file_7z.c index c054e007d1..1afd5d4b83 100644 --- a/libretro-common/file/archive_file_7z.c +++ b/libretro-common/file/archive_file_7z.c @@ -260,8 +260,6 @@ static int sevenzip_file_read( if (!filestream_write_file(optional_outfile, ptr, outsize)) { - /*RARCH_ERR("Could not open outfilepath %s.\n", - optional_outfile);*/ res = SZ_OK; file_found = true; outsize = -1; diff --git a/libretro-common/file/archive_file_zlib.c b/libretro-common/file/archive_file_zlib.c index 14aeaade6d..4716ba95a3 100644 --- a/libretro-common/file/archive_file_zlib.c +++ b/libretro-common/file/archive_file_zlib.c @@ -186,10 +186,6 @@ static int zip_file_decompressed( if (name[strlen(name) - 1] == '/' || name[strlen(name) - 1] == '\\') return 1; -#if 0 - RARCH_LOG("[deflate] Path: %s, CRC32: 0x%x\n", name, crc32); -#endif - if (strstr(name, userdata->decomp_state.needle)) { bool goto_error = false; @@ -207,9 +203,6 @@ static int zip_file_decompressed( if (buf) { - /*RARCH_LOG("%s: %s\n", - msg_hash_to_str(MSG_EXTRACTING_FILE), - userdata->decomp_state.opt_file);*/ memcpy(buf, handle.data, size); if (!filestream_write_file(userdata->decomp_state.opt_file, buf, size)) diff --git a/libretro-common/file/file_path.c b/libretro-common/file/file_path.c index 83ad7f1fe7..2dca816222 100644 --- a/libretro-common/file/file_path.c +++ b/libretro-common/file/file_path.c @@ -1148,8 +1148,6 @@ void fill_pathname_application_path(char *s, size_t len) } } } - - /* RARCH_ERR("Cannot resolve application path! This should not happen.\n"); */ #endif } #endif diff --git a/libretro-common/formats/xml/rxml.c b/libretro-common/formats/xml/rxml.c index 48a95346b7..b7129653c4 100644 --- a/libretro-common/formats/xml/rxml.c +++ b/libretro-common/formats/xml/rxml.c @@ -411,10 +411,6 @@ static char *purge_xml_comments(const char *str) rxml_document_t *rxml_load_document(const char *path) { -#ifndef RXML_TEST - RARCH_WARN("Using RXML as drop in for libxml2. Behavior might be very buggy.\n"); -#endif - char *memory_buffer = NULL; char *new_memory_buffer = NULL; const char *mem_ptr = NULL;