diff --git a/cpp/LunaHook/LunaHook/engines/ppsspp/specialgames.hpp b/cpp/LunaHook/LunaHook/engines/ppsspp/specialgames.hpp index ca33da08..5479986d 100644 --- a/cpp/LunaHook/LunaHook/engines/ppsspp/specialgames.hpp +++ b/cpp/LunaHook/LunaHook/engines/ppsspp/specialgames.hpp @@ -138,6 +138,12 @@ namespace ppsspp CharFilter(buffer, '\n'); StringFilter(buffer, "\x81\x40", 2); } + void ULJM06006(TextBuffer *buffer, HookParam *hp) + { + StringFilter(buffer, "@L", 2); + StringFilter(buffer, "@I", 2); + StringFilter(buffer, "@P", 2); + } void ULJM06147(TextBuffer *buffer, HookParam *hp) { CharFilter(buffer, L'R'); @@ -1404,6 +1410,9 @@ namespace ppsspp // 真・翡翠の雫 緋色の欠片2 ポータブル {0x887CEAC, {0, 0, 0, 0, ULJM06289, "ULJM05725"}}, {0x8876794, {0, 0, 0, 0, ULJM05725, "ULJM05725"}}, + // 緋色の欠片ポータブル + {0x88665E4, {0, 0, 0, 0, ULJM05943F, "ULJM05399"}}, + {0x8858770, {0, 4, 0, 0, ULJM05943F, "ULJM05399"}}, // アラビアンズ・ダウト {0x88406FC, {0, 0, 0, 0, 0, "NPJH50834"}}, // いざ、出陣!恋戦 第二幕 ~甲斐編~ @@ -1522,7 +1531,10 @@ namespace ppsspp {0x887B4A4, {0, 1, 0, 0, 0, "ULJM06318"}}, // うたの☆プリンスさまっ♪All Star After Secret {0x885F3C0, {0, 3, 0, NPJH50902, 0, "NPJH50902"}}, - + // スカーレッドライダーゼクス + {0x8863104, {0, 1, 0, 0, ULJM06006, "ULJM06006"}}, + // スカーレッドライダーゼクス スターダストラバーズ + {0x8862D80, {0, 1, 0, 0, ULJM06006, "ULJM06007"}}, }; } \ No newline at end of file diff --git a/cpp/LunaHook/scripts/buildcore.bat b/cpp/LunaHook/scripts/buildcore.bat deleted file mode 100644 index 4b1f2198..00000000 --- a/cpp/LunaHook/scripts/buildcore.bat +++ /dev/null @@ -1,6 +0,0 @@ -cmake ..\CMakeLists.txt -G "Visual Studio 17 2022" -A win32 -T host=x86 -B ..\build\x86 -cmake --build ..\build\x86 --config Release --target ALL_BUILD -j 14 - -cmake ..\CMakeLists.txt -G "Visual Studio 17 2022" -A x64 -T host=x64 -B ..\build\x64 -cmake --build ..\build\x64 --config Release --target ALL_BUILD -j 14 -robocopy ..\builds\Release ..\..\..\py\files\plugins\LunaHook \ No newline at end of file diff --git a/cpp/LunaHook/scripts/buildcore_1.bat b/cpp/LunaHook/scripts/buildcore_1.bat new file mode 100644 index 00000000..ef9d5319 --- /dev/null +++ b/cpp/LunaHook/scripts/buildcore_1.bat @@ -0,0 +1,2 @@ +cmake ..\CMakeLists.txt -G "Visual Studio 17 2022" -A win32 -T host=x86 -B ..\build\x86 +cmake ..\CMakeLists.txt -G "Visual Studio 17 2022" -A x64 -T host=x64 -B ..\build\x64 \ No newline at end of file diff --git a/cpp/LunaHook/scripts/buildcore_2.bat b/cpp/LunaHook/scripts/buildcore_2.bat new file mode 100644 index 00000000..252f3606 --- /dev/null +++ b/cpp/LunaHook/scripts/buildcore_2.bat @@ -0,0 +1,3 @@ +cmake --build ..\build\x86 --config Release --target ALL_BUILD -j 14 +cmake --build ..\build\x64 --config Release --target ALL_BUILD -j 14 +robocopy ..\builds\Release ..\..\..\py\files\plugins\LunaHook \ No newline at end of file