mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix project and .rc so it builds with VS 2010 Express, thanks Darth1701. Plus logging tweaks.
This commit is contained in:
parent
509dcded91
commit
e370a1a8aa
4 changed files with 10 additions and 117 deletions
|
@ -207,8 +207,9 @@ nextblock:
|
|||
e->isDirectory = !isFile;
|
||||
e->flags = dir.flags;
|
||||
e->isBlockSectorMode = false;
|
||||
|
||||
DEBUG_LOG(FILESYS, "%s: %s %08x %08x %i", e->isDirectory?"D":"F", name, dir.firstDataSectorLE, e->startingPosition, e->startingPosition);
|
||||
|
||||
// Let's not excessively spam the log - I commented this line out.
|
||||
// DEBUG_LOG(FILESYS, "%s: %s %08x %08x %i", e->isDirectory?"D":"F", name, dir.firstDataSectorLE, e->startingPosition, e->startingPosition);
|
||||
|
||||
if (e->isDirectory && !relative)
|
||||
{
|
||||
|
|
|
@ -132,7 +132,7 @@ void __PPGeInit()
|
|||
Memory::Memcpy(atlasPtr, imageData, atlasSize);
|
||||
free(imageData);
|
||||
|
||||
NOTICE_LOG(HLE, "PPGe drawing library initialized. DL: %08x Data: %08x Atlas: %08x (%i) Ctx: %08x",
|
||||
DEBUG_LOG(HLE, "PPGe drawing library initialized. DL: %08x Data: %08x Atlas: %08x (%i) Ctx: %08x",
|
||||
dlPtr, dataPtr, atlasPtr, atlasSize, savedContextPtr);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||
# Visual Studio Express 2012 for Windows Desktop
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PPSSPPWindows", "PPSSPP.vcxproj", "{567AF8DB-42C1-4D08-96CD-D70A2DFEFC6B}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
#include "resource.h"
|
||||
|
||||
#define APSTUDIO_READONLY_SYMBOLS
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Generated from the TEXTINCLUDE 2 resource.
|
||||
//
|
||||
#include "afxres.h"
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "windows.h"
|
||||
|
||||
#undef APSTUDIO_READONLY_SYMBOLS
|
||||
|
||||
#define IDC_STATIC -1
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Neutral resources
|
||||
|
||||
|
@ -236,93 +235,6 @@ END
|
|||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// German (Germany) resources
|
||||
|
||||
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_DEU)
|
||||
LANGUAGE LANG_GERMAN, SUBLANG_GERMAN
|
||||
#pragma code_page(1252)
|
||||
|
||||
#ifdef APSTUDIO_INVOKED
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// TEXTINCLUDE
|
||||
//
|
||||
|
||||
1 TEXTINCLUDE
|
||||
BEGIN
|
||||
"resource.h\0"
|
||||
END
|
||||
|
||||
2 TEXTINCLUDE
|
||||
BEGIN
|
||||
"#include ""afxres.h""\r\0"
|
||||
END
|
||||
|
||||
3 TEXTINCLUDE
|
||||
BEGIN
|
||||
"\r\0"
|
||||
END
|
||||
|
||||
#endif // APSTUDIO_INVOKED
|
||||
|
||||
#endif // German (Germany) resources
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// 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
|
||||
|
@ -395,25 +307,6 @@ 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
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
|
||||
|
@ -422,7 +315,6 @@ END
|
|||
//
|
||||
// Generated from the TEXTINCLUDE 3 resource.
|
||||
//
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
#endif // not APSTUDIO_INVOKED
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue