From 952a937fe7d98059fc4a218be16f36b5f14ca6d7 Mon Sep 17 00:00:00 2001 From: Florent Castelli Date: Sun, 2 Dec 2012 02:58:00 +0100 Subject: [PATCH] Revert changes in RC file that were breaking debug build on Windows. If the build isn't working on VS Express, notify me so we can find a fix. --- Windows/ppsspp.rc | 75 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) diff --git a/Windows/ppsspp.rc b/Windows/ppsspp.rc index 7415576c8f..2af9a1b0d2 100644 --- a/Windows/ppsspp.rc +++ b/Windows/ppsspp.rc @@ -235,6 +235,62 @@ END ///////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////// + + +///////////////////////////////////////////////////////////////////////////// +// Swedish (Sweden) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_SVE) +LANGUAGE LANG_SWEDISH, SUBLANG_SWEDISH +#pragma code_page(1252) + +///////////////////////////////////////////////////////////////////////////// +// +// Menu +// + +IDR_POPUPMENUS MENU +BEGIN + POPUP "memview" + BEGIN + MENUITEM "Go to in &Disasm", ID_MEMVIEW_GOTOINDISASM + MENUITEM SEPARATOR + MENUITEM "&Copy value", ID_MEMVIEW_COPYVALUE + MENUITEM "&Dump...", ID_MEMVIEW_DUMP + END + POPUP "disasm" + BEGIN + MENUITEM "Copy &address", ID_DISASM_COPYADDRESS + MENUITEM "Copy instruction (&hex)", ID_DISASM_COPYINSTRUCTIONHEX + MENUITEM "Copy instruction (&disasm)", ID_DISASM_COPYINSTRUCTIONDISASM + MENUITEM SEPARATOR + MENUITEM "&Run to here", ID_DISASM_RUNTOHERE + MENUITEM "&Set Next Statement", ID_DISASM_SETPCTOHERE + MENUITEM "&Toggle breakpoint", ID_DISASM_TOGGLEBREAKPOINT + MENUITEM "&Follow branch", ID_DISASM_FOLLOWBRANCH + MENUITEM SEPARATOR + MENUITEM "&Show Dynarec Results", ID_DISASM_DYNARECRESULTS + MENUITEM "Go to in &Memory View", ID_DISASM_GOTOINMEMORYVIEW + MENUITEM SEPARATOR + MENUITEM "&Kill function", ID_DISASM_ADDHLE + MENUITEM "&Rename function...", ID_DISASM_RENAMEFUNCTION + END + POPUP "funclist" + BEGIN + MENUITEM "&Kill function", ID_FUNCLIST_KILLFUNCTION + END + POPUP "reglist" + BEGIN + MENUITEM "Go to in &memory view", ID_REGLIST_GOTOINMEMORYVIEW + MENUITEM "Go to in &disasm", ID_REGLIST_GOTOINDISASM + MENUITEM SEPARATOR + MENUITEM "&Copy value", ID_REGLIST_COPYVALUE + MENUITEM "C&hange...", ID_REGLIST_CHANGE + END +END + + ///////////////////////////////////////////////////////////////////////////// // // RT_MANIFEST @@ -307,6 +363,25 @@ END ///////////////////////////////////////////////////////////////////////////// +// +// String Table +// + +STRINGTABLE +BEGIN + IDS_GAMELISTPATH "Path" + IDS_UNIMPLEMENTED "Unimplemented" +END + +STRINGTABLE +BEGIN + IDS_GAMELISTGENRE "Genre" + IDS_APPNAME "Potemkin" + IDS_GAMELISTTYPE "Type" +END + +#endif // Swedish (Sweden) resources +/////////////////////////////////////////////////////////////////////////////