From cd858bced3ec13da9ff25d935b8c5166ad9a60b7 Mon Sep 17 00:00:00 2001 From: Damiano Galassi Date: Thu, 12 Jan 2017 19:56:14 +0100 Subject: MacGui: fix string encoding when converting chapters titles to NSString. --- macosx/HBTitle.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'macosx') diff --git a/macosx/HBTitle.m b/macosx/HBTitle.m index acbaddcea..b07e7f270 100644 --- a/macosx/HBTitle.m +++ b/macosx/HBTitle.m @@ -249,7 +249,7 @@ extern NSString *keySubTrackType; NSString *title; if (chapter->title != NULL) { - title = [NSString stringWithFormat:@"%s", chapter->title]; + title = @(chapter->title); } else { -- cgit v1.2.3