mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix a missing 'break' in a date formatting switch statement in PSPSaveDialog.cpp.
This commit is contained in:
parent
405ac236e6
commit
ea830774c8
1 changed files with 1 additions and 0 deletions
|
@ -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…
Add table
Reference in a new issue