From 6b1441340c6d51d862e394bf7192a69275d6fbb8 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 28 Jan 2016 10:09:26 +0100 Subject: [PATCH] Cleanup --- tasks/tasks.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tasks/tasks.c b/tasks/tasks.c index e0cc6d2aed..4a6af88268 100644 --- a/tasks/tasks.c +++ b/tasks/tasks.c @@ -98,7 +98,8 @@ static void push_task_progress(rarch_task_t *task) else { if (task->progress >= 0 && task->progress <= 100) - task_msg_queue_pushf(1, 60, true, "%i%%: %s", task->progress, task->title); + task_msg_queue_pushf(1, 60, true, "%i%%: %s", + task->progress, task->title); else task_msg_queue_pushf(1, 60, true, "%s...", task->title); }