mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-22 01:40:30 +00:00
Merge pull request #2592 from lioncash/master
Fix a missing 'break' in a date formatting switch statement in PSPSaveDialog.cpp.
This commit is contained in:
commit
6239893d8c
@ -452,6 +452,7 @@ void PSPSaveDialog::DisplaySaveDataInfo2()
|
||||
switch (g_Config.iDateFormat) {
|
||||
case 1:
|
||||
snprintf(date, 256, "%d/%02d/%02d", year, month, day);
|
||||
break;
|
||||
case 2:
|
||||
snprintf(date, 256, "%02d/%02d/%d", month, day, year);
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user