Skip to content

Commit 59ead13

Browse files
committed
Don't include stdstring in task_save.c
1 parent 5515446 commit 59ead13

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tasks/task_save.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
#include <rthreads/rthreads.h>
2828
#include <file/file_path.h>
2929
#include <retro_miscellaneous.h>
30-
#include <string/stdstring.h>
3130
#include <time/rtime.h>
3231

3332
#ifdef HAVE_CONFIG_H
@@ -595,7 +594,7 @@ static void task_save_handler(retro_task_t *task)
595594

596595
task_save_handler_finished(task, state);
597596

598-
if (!string_is_empty(msg))
597+
if (msg)
599598
free(msg);
600599
}
601600
}

0 commit comments

Comments
 (0)