# HG changeset patch # User Matti Hamalainen # Date 1544024558 -7200 # Node ID 6677535b8b9f1762a3e506a3912607c4179a0ebc # Parent 3dac7a781317ca9bde51c954ba4e34af185e9d8c Canonicalize the 64vw window title in case of non-supported files. diff -r 3dac7a781317 -r 6677535b8b9f tools/64vw.c --- a/tools/64vw.c Wed Dec 05 16:47:59 2018 +0200 +++ b/tools/64vw.c Wed Dec 05 17:42:38 2018 +0200 @@ -515,9 +515,10 @@ if (title == NULL) { - title = dm_strdup_printf("%s - %s [%d / %d]", - dmProgName, filename, - currIndex + 1, noptFilenames2); + title = dm_strdup_printf("%s - [%d / %d] %s", + dmProgName, + currIndex + 1, + noptFilenames2); } SDL_SetWindowTitle(window, title);