mirror of https://github.com/snes9xgit/snes9x.git
win32: Add "Clear List" option to recent menu.
This commit is contained in:
parent
22e0b373e4
commit
0b0607722c
|
@ -2294,6 +2294,13 @@ LRESULT CALLBACK WinProc(
|
||||||
int i = (wParam & 0xffff) - 0xFF00;
|
int i = (wParam & 0xffff) - 0xFF00;
|
||||||
int j = 0;
|
int j = 0;
|
||||||
{
|
{
|
||||||
|
if (wParam == 0xFF00 + MAX_RECENT_GAMES_LIST_SIZE)
|
||||||
|
{
|
||||||
|
WinDeleteRecentGamesList();
|
||||||
|
S9xSetRecentGames();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
while (j < MAX_RECENT_GAMES_LIST_SIZE && j != i)
|
while (j < MAX_RECENT_GAMES_LIST_SIZE && j != i)
|
||||||
j++;
|
j++;
|
||||||
if (i == j)
|
if (i == j)
|
||||||
|
@ -4224,6 +4231,14 @@ void S9xSetRecentGames ()
|
||||||
|
|
||||||
InsertMenuItem (recent, 0xFF00 + i, FALSE, &mii);
|
InsertMenuItem (recent, 0xFF00 + i, FALSE, &mii);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (i > 0)
|
||||||
|
{
|
||||||
|
mii.dwTypeData = TEXT("Clear List");
|
||||||
|
mii.cch = lstrlen(name) + 1;
|
||||||
|
mii.wID = 0xFF00 + MAX_RECENT_GAMES_LIST_SIZE;
|
||||||
|
InsertMenuItem(recent, mii.wID, FALSE, &mii);
|
||||||
|
}
|
||||||
#ifdef UNICODE
|
#ifdef UNICODE
|
||||||
Win7_CreateJumpList();
|
Win7_CreateJumpList();
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue