Win32 - fix a stupid error I made in the recent lua files menu

This commit is contained in:
adelikat 2009-01-02 23:38:48 +00:00
parent 1a83cfa5e4
commit 38e52253be
1 changed files with 3 additions and 3 deletions

View File

@ -72,7 +72,7 @@ using namespace std;
//Globals
//********************************************************************************
//Handles---------------------------------------------
//Handles----------------------------------------------
static HMENU fceumenu = 0; //Main menu.
HWND pwindow; //Client Area
static HMENU recentmenu; //Recent Menu
@ -80,7 +80,7 @@ static HMENU recentluamenu; //Recent Lua Files Menu
HMENU hfceuxcontext; //Handle to context menu
HMENU hfceuxcontextsub; //Handle to context sub menu
//Extern variables------------------------------------
//Extern variables-------------------------------------
extern bool movieSubtitles;
extern FCEUGI *GameInfo;
extern int EnableAutosave;
@ -671,7 +671,7 @@ void UpdateRecentLuaArray(const char* addString, char** bufferArray, unsigned in
bufferArray[0] = tmp;
// Update the recent files menu
UpdateRMenu(menu, bufferArray, menuItem, baseId);
UpdateLuaRMenu(menu, bufferArray, menuItem, baseId);
return;
}