language: code clean up and fix some bugs
This commit is contained in:
parent
9767f73f71
commit
b635983167
|
@ -1055,7 +1055,7 @@ void CMainMenu::FillOutMenu ( HMENU hMenu )
|
|||
*******************/
|
||||
if (g_Plugins->RSP() != NULL && IsMenu((HMENU)g_Plugins->RSP()->GetDebugMenu()))
|
||||
{
|
||||
Item.Reset(ID_PLUGIN_MENU,EMPTY_STRING,NULL,g_Plugins->RSP()->GetDebugMenu(),L"&RSP" );
|
||||
Item.Reset(ID_PLUGIN_MENU,EMPTY_STRING,EMPTY_STDSTR,g_Plugins->RSP()->GetDebugMenu(),L"&RSP");
|
||||
DebugMenu.push_back(Item);
|
||||
}
|
||||
|
||||
|
@ -1063,24 +1063,27 @@ void CMainMenu::FillOutMenu ( HMENU hMenu )
|
|||
*******************/
|
||||
if (g_Plugins->Gfx() != NULL && IsMenu((HMENU)g_Plugins->Gfx()->GetDebugMenu()))
|
||||
{
|
||||
Item.Reset(ID_PLUGIN_MENU,EMPTY_STRING,NULL,g_Plugins->Gfx()->GetDebugMenu(),L"&RDP" );
|
||||
Item.Reset(ID_PLUGIN_MENU,EMPTY_STRING,EMPTY_STDSTR,g_Plugins->Gfx()->GetDebugMenu(),L"&RDP");
|
||||
DebugMenu.push_back(Item);
|
||||
}
|
||||
|
||||
/* Notification Menu
|
||||
*******************/
|
||||
Item.Reset(ID_DEBUG_SHOW_UNHANDLED_MEM,EMPTY_STRING,EMPTY_STDSTR,NULL,L"On Unhandled Memory Actions");
|
||||
if (g_Settings->LoadBool(Debugger_ShowUnhandledMemory)) {
|
||||
if (g_Settings->LoadBool(Debugger_ShowUnhandledMemory))
|
||||
{
|
||||
Item.SetItemTicked(true);
|
||||
}
|
||||
DebugNotificationMenu.push_back(Item);
|
||||
Item.Reset(ID_DEBUG_SHOW_PIF_ERRORS,EMPTY_STRING,EMPTY_STDSTR,NULL,L"On PIF Errors");
|
||||
if (g_Settings->LoadBool(Debugger_ShowPifErrors)) {
|
||||
if (g_Settings->LoadBool(Debugger_ShowPifErrors))
|
||||
{
|
||||
Item.SetItemTicked(true);
|
||||
}
|
||||
DebugNotificationMenu.push_back(Item);
|
||||
Item.Reset(ID_DEBUG_SHOW_DIV_BY_ZERO,EMPTY_STRING,EMPTY_STDSTR,NULL,L"On Div By Zero");
|
||||
if (g_Settings->LoadBool(Debugger_ShowDivByZero)) {
|
||||
if (g_Settings->LoadBool(Debugger_ShowDivByZero))
|
||||
{
|
||||
Item.SetItemTicked(true);
|
||||
}
|
||||
DebugNotificationMenu.push_back(Item);
|
||||
|
|
|
@ -151,7 +151,7 @@ void CNotification::SetGfxPlugin( CGfxPlugin * Plugin )
|
|||
void CNotification::SetWindowCaption (const wchar_t * Caption)
|
||||
{
|
||||
wchar_t WinTitle[256];
|
||||
_snwprintf( WinTitle, sizeof(WinTitle), L"%s - %s", Caption, g_Settings->LoadString(Setting_ApplicationName).c_str());
|
||||
_snwprintf( WinTitle, sizeof(WinTitle), L"%s - %s", Caption, g_Settings->LoadString(Setting_ApplicationName).ToUTF16().c_str());
|
||||
WinTitle[sizeof(WinTitle) - 1] = 0;
|
||||
m_hWnd->Caption(WinTitle);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue