wordpad: Fixed a bug in setting the recent file list in the registry.
This commit is contained in:
parent
d0927f63aa
commit
8769e706cc
|
@ -285,7 +285,7 @@ void registry_set_filelist(LPCWSTR newFile, HWND hMainWnd)
|
||||||
pFiles[0] = newFile;
|
pFiles[0] = newFile;
|
||||||
} else
|
} else
|
||||||
{
|
{
|
||||||
for(i = 0; pFiles[i] && i < FILELIST_ENTRIES-1; i++)
|
for(i = 0; i < FILELIST_ENTRIES-1; i++)
|
||||||
pFiles[FILELIST_ENTRIES-1-i] = pFiles[FILELIST_ENTRIES-2-i];
|
pFiles[FILELIST_ENTRIES-1-i] = pFiles[FILELIST_ENTRIES-2-i];
|
||||||
|
|
||||||
pFiles[0] = newFile;
|
pFiles[0] = newFile;
|
||||||
|
|
Loading…
Reference in New Issue