From 66613008f11da8d23feb97a385c6019835689532 Mon Sep 17 00:00:00 2001 From: zeromus Date: Mon, 3 Oct 2016 01:48:05 +0000 Subject: [PATCH] update path format tooltip --- desmume/src/windows/pathsettings.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/desmume/src/windows/pathsettings.cpp b/desmume/src/windows/pathsettings.cpp index d394464f7..1699f0bd6 100644 --- a/desmume/src/windows/pathsettings.cpp +++ b/desmume/src/windows/pathsettings.cpp @@ -185,14 +185,17 @@ BOOL PathSettings_OnInitDialog(HWND hDlg, HWND hwndFocus, LPARAM lParam) ti.uFlags = TTF_SUBCLASS | TTF_IDISHWND; ti.uId = (UINT_PTR)hwnd; ti.lpszText = - "The format a screenshot should be saved in.\r\n" + "The string format a screenshot should be saved with (google strftime).\r\n" "%f\t\tFilename\r\n" "%r\t\tRandom: 0 ~ RAND_MAX\r\n" "%t\t\tTick: Reset on startup\r\n" "%Y\t\tYear:Four Digit\r\n" + "%y\t\tYear:Two Digit\r\n" "%m\t\tMonth:Two Digit\r\n" - "%D\t\tDay:Two Digit\r\n" - "%H\t\tHour:Two Digit\r\n" + "%d\t\tDay:Two Digit\r\n" + "%H\t\tHour (24):Two Digit\r\n" + "%I\t\tHour (12):Two Digit\r\n" + "%p\t\tAM/PM\r\n" "%M\t\tMinute: Two Digit\r\n" "%S\t\tSecond: Two Digit\r\n"; GetClientRect(hwnd, &ti.rect);