mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-04-04 07:41:34 +00:00
Get rid of general.h dependency for playlist.c
This commit is contained in:
parent
023bb20b91
commit
a0a78e0710
13
playlist.c
13
playlist.c
@ -19,7 +19,6 @@
|
|||||||
#include "msvc/msvc_compat.h"
|
#include "msvc/msvc_compat.h"
|
||||||
#include "compat/posix_string.h"
|
#include "compat/posix_string.h"
|
||||||
#include "boolean.h"
|
#include "boolean.h"
|
||||||
#include "general.h"
|
|
||||||
#include "file.h"
|
#include "file.h"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
@ -134,11 +133,7 @@ static void content_playlist_write_file(content_playlist_t *playlist)
|
|||||||
file = fopen(playlist->conf_path, "w");
|
file = fopen(playlist->conf_path, "w");
|
||||||
|
|
||||||
if (!file)
|
if (!file)
|
||||||
{
|
|
||||||
RARCH_ERR("Couldn't write to content playlist file: %s.\n",
|
|
||||||
playlist->conf_path);
|
|
||||||
return;
|
return;
|
||||||
}
|
|
||||||
|
|
||||||
for (i = 0; i < playlist->size; i++)
|
for (i = 0; i < playlist->size; i++)
|
||||||
{
|
{
|
||||||
@ -189,7 +184,7 @@ size_t content_playlist_size(content_playlist_t *playlist)
|
|||||||
static bool content_playlist_read_file(
|
static bool content_playlist_read_file(
|
||||||
content_playlist_t *playlist, const char *path)
|
content_playlist_t *playlist, const char *path)
|
||||||
{
|
{
|
||||||
char buf[3][PATH_MAX];
|
char buf[3][1024];
|
||||||
unsigned i;
|
unsigned i;
|
||||||
struct content_playlist_entry *entry = NULL;
|
struct content_playlist_entry *entry = NULL;
|
||||||
char *last = NULL;
|
char *last = NULL;
|
||||||
@ -197,8 +192,6 @@ static bool content_playlist_read_file(
|
|||||||
|
|
||||||
if (!file || !playlist)
|
if (!file || !playlist)
|
||||||
{
|
{
|
||||||
RARCH_ERR("Couldn't read content playlist file: %s.\n", path);
|
|
||||||
|
|
||||||
if (file)
|
if (file)
|
||||||
fclose(file);
|
fclose(file);
|
||||||
|
|
||||||
@ -237,14 +230,10 @@ end:
|
|||||||
|
|
||||||
content_playlist_t *content_playlist_init(const char *path, size_t size)
|
content_playlist_t *content_playlist_init(const char *path, size_t size)
|
||||||
{
|
{
|
||||||
RARCH_LOG("Opening playlist: %s.\n", path);
|
|
||||||
content_playlist_t *playlist = (content_playlist_t*)
|
content_playlist_t *playlist = (content_playlist_t*)
|
||||||
calloc(1, sizeof(*playlist));
|
calloc(1, sizeof(*playlist));
|
||||||
if (!playlist)
|
if (!playlist)
|
||||||
{
|
|
||||||
RARCH_ERR("Cannot initialize content playlist.\n");
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
|
||||||
|
|
||||||
playlist->entries = (struct content_playlist_entry*)calloc(size,
|
playlist->entries = (struct content_playlist_entry*)calloc(size,
|
||||||
sizeof(*playlist->entries));
|
sizeof(*playlist->entries));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user