mirror of
https://github.com/libretro/RetroArch
synced 2025-02-21 09:39:56 +00:00
No need to remove function names, they don't slow anything down and they're invaluable for crash debugging.
This commit is contained in:
parent
77649b2f23
commit
eae911bcd2
@ -120,7 +120,6 @@ ifeq ($(DEBUG), 1)
|
|||||||
else
|
else
|
||||||
CFLAGS += -O3 -ffast-math
|
CFLAGS += -O3 -ffast-math
|
||||||
CXXFLAGS += -O3 -ffast-math
|
CXXFLAGS += -O3 -ffast-math
|
||||||
LDCXXFLAGS += -s
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
CFLAGS += -Wall -Wno-unused-result -Wno-unused-variable -I.
|
CFLAGS += -Wall -Wno-unused-result -Wno-unused-variable -I.
|
||||||
|
@ -51,7 +51,7 @@ struct content_playlist
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* content_playlist_get_index:
|
* content_playlist_get_index:
|
||||||
* @playlist : Playlist handle.
|
* @playlist : Playlist handle.
|
||||||
* @idx : Index of playlist entry.
|
* @idx : Index of playlist entry.
|
||||||
* @path : Path of playlist entry.
|
* @path : Path of playlist entry.
|
||||||
* @core_path : Core path of playlist entry.
|
* @core_path : Core path of playlist entry.
|
||||||
@ -113,7 +113,6 @@ void content_playlist_get_index_by_path(content_playlist_t *playlist,
|
|||||||
*crc32 = playlist->entries[i].crc32;
|
*crc32 = playlist->entries[i].crc32;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool content_playlist_entry_exists(content_playlist_t *playlist,
|
bool content_playlist_entry_exists(content_playlist_t *playlist,
|
||||||
@ -133,7 +132,7 @@ bool content_playlist_entry_exists(content_playlist_t *playlist,
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* content_playlist_free_entry:
|
* content_playlist_free_entry:
|
||||||
* @entry : Playlist entry handle.
|
* @entry : Playlist entry handle.
|
||||||
*
|
*
|
||||||
* Frees playlist entry.
|
* Frees playlist entry.
|
||||||
**/
|
**/
|
||||||
@ -246,7 +245,7 @@ void content_playlist_push(content_playlist_t *playlist,
|
|||||||
/* Seen it before, bump to top. */
|
/* Seen it before, bump to top. */
|
||||||
tmp = playlist->entries[i];
|
tmp = playlist->entries[i];
|
||||||
memmove(playlist->entries + 1, playlist->entries,
|
memmove(playlist->entries + 1, playlist->entries,
|
||||||
i * sizeof(content_playlist_entry_t));
|
i * sizeof(content_playlist_entry_t));
|
||||||
playlist->entries[0] = tmp;
|
playlist->entries[0] = tmp;
|
||||||
|
|
||||||
return;
|
return;
|
||||||
@ -298,7 +297,7 @@ void content_playlist_write_file(content_playlist_t *playlist)
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* content_playlist_free:
|
* content_playlist_free:
|
||||||
* @playlist : Playlist handle.
|
* @playlist : Playlist handle.
|
||||||
*
|
*
|
||||||
* Frees playlist handle.
|
* Frees playlist handle.
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user