mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-24 05:49:58 +00:00
Remove scesupPreAcc
It's not really needed and is just going to get in the way...
This commit is contained in:
parent
f956044d6c
commit
6b689bdf8d
@ -171,7 +171,6 @@
|
||||
<ClCompile Include="HLE\sceRtc.cpp" />
|
||||
<ClCompile Include="HLE\sceSas.cpp" />
|
||||
<ClCompile Include="HLE\sceSsl.cpp" />
|
||||
<ClCompile Include="HLE\scesupPreAcc.cpp" />
|
||||
<ClCompile Include="HLE\sceUmd.cpp" />
|
||||
<ClCompile Include="HLE\sceUsb.cpp" />
|
||||
<ClCompile Include="HLE\sceUtility.cpp" />
|
||||
@ -319,7 +318,6 @@
|
||||
<ClInclude Include="HLE\sceRtc.h" />
|
||||
<ClInclude Include="HLE\sceSas.h" />
|
||||
<ClInclude Include="HLE\sceSsl.h" />
|
||||
<ClInclude Include="HLE\scesupPreAcc.h" />
|
||||
<ClInclude Include="HLE\sceUmd.h" />
|
||||
<ClInclude Include="HLE\sceUsb.h" />
|
||||
<ClInclude Include="HLE\sceUtility.h" />
|
||||
|
@ -318,9 +318,6 @@
|
||||
<ClCompile Include="HLE\sceParseHttp.cpp">
|
||||
<Filter>HLE\Libraries</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="HLE\scesupPreAcc.cpp">
|
||||
<Filter>HLE\Libraries</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="HLE\sceVaudio.cpp">
|
||||
<Filter>HLE\Libraries</Filter>
|
||||
</ClCompile>
|
||||
@ -614,9 +611,6 @@
|
||||
<ClInclude Include="HLE\sceParseHttp.h">
|
||||
<Filter>HLE\Libraries</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="HLE\scesupPreAcc.h">
|
||||
<Filter>HLE\Libraries</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="HLE\sceVaudio.h">
|
||||
<Filter>HLE\Libraries</Filter>
|
||||
</ClInclude>
|
||||
|
@ -243,7 +243,6 @@ void RegisterAllModules() {
|
||||
Register_sceParseUri();
|
||||
Register_sceSsl();
|
||||
Register_sceParseHttp();
|
||||
Register_scesupPreAcc();
|
||||
Register_sceVaudio();
|
||||
Register_sceUsb();
|
||||
|
||||
|
@ -1,38 +0,0 @@
|
||||
// Copyright (c) 2012- PPSSPP Project.
|
||||
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, version 2.0 or later versions.
|
||||
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License 2.0 for more details.
|
||||
|
||||
// A copy of the GPL 2.0 should have been included with the program.
|
||||
// If not, see http://www.gnu.org/licenses/
|
||||
|
||||
// Official git repository and contact information can be found at
|
||||
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
||||
|
||||
#include "HLE.h"
|
||||
|
||||
#include "scesupPreAcc.h"
|
||||
|
||||
const HLEFunction scesupPreAcc[] =
|
||||
{
|
||||
{0x110e318b, 0, "scesupPreAcc_0x110e318b"},
|
||||
{0x13ae25b3, 0, "scesupPreAcc_0x13ae25b3"},
|
||||
{0x28c5f696, 0, "scesupPreAcc_0x28c5f696"},
|
||||
{0x348ba3e2, 0, "scesupPreAcc_0x348ba3e2"},
|
||||
{0x86debd66, 0, "scesupPreAcc_0x86debd66"},
|
||||
{0xa0eaf444, 0, "scesupPreAcc_0xa0eaf444"},
|
||||
{0xb03ff882, 0, "scesupPreAcc_0xb03ff882"},
|
||||
{0x2ec3f4d9, 0, "scesupPreAcc_0x2ec3f4d9"},
|
||||
|
||||
};
|
||||
|
||||
void Register_scesupPreAcc()
|
||||
{
|
||||
RegisterModule("scesupPreAcc",ARRAY_SIZE(scesupPreAcc), scesupPreAcc );
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
// Copyright (c) 2012- PPSSPP Project.
|
||||
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, version 2.0 or later versions.
|
||||
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License 2.0 for more details.
|
||||
|
||||
// A copy of the GPL 2.0 should have been included with the program.
|
||||
// If not, see http://www.gnu.org/licenses/
|
||||
|
||||
// Official git repository and contact information can be found at
|
||||
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
||||
|
||||
#pragma once
|
||||
|
||||
void Register_scesupPreAcc();
|
||||
|
Loading…
Reference in New Issue
Block a user