From 360e7c0d2dddf4f4645599d51d652e707c0b717b Mon Sep 17 00:00:00 2001 From: LM <34066913+LightningMods@users.noreply.github.com> Date: Sat, 29 Mar 2025 15:55:55 -0400 Subject: [PATCH] correct a few typos --- PS5 technical writeups/pkg-writeup.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PS5 technical writeups/pkg-writeup.md b/PS5 technical writeups/pkg-writeup.md index e2a6ed5..0d070c1 100644 --- a/PS5 technical writeups/pkg-writeup.md +++ b/PS5 technical writeups/pkg-writeup.md @@ -320,9 +320,9 @@ int pkginstall(const char* fullpath, log_info("AppInstUtil Initialized..."); - sceAppInstUtilInstallByPackage = (int(*)(astruct_1*, SceAppInstallPkgInfo*, astruct_2*)) LOAD_FUNCTION_AND_CHECK(lib_appinstutil, "sceAppInstUtilInstallByPackage"); + sceAppInstUtilInstallByPackage = (int(*)(MetaInfo*, SceAppInstallPkgInfo*, PlayGoInfo*)) LOAD_FUNCTION_AND_CHECK(lib_appinstutil, "sceAppInstUtilInstallByPackage"); - astruct_2 arg3; + PlayGoInfo arg3; SceAppInstallPkgInfo pkg_info; memset(&arg3, 0, sizeof(arg3)); @@ -335,7 +335,7 @@ int pkginstall(const char* fullpath, strncpy(*arg3.content_ids, "", sizeof(content_id_t) - 1); } - astruct_1 arg1 = (astruct_1){ + MetaInfo arg1 = (MetaInfo){ .uri = fullpath, .ex_uri = "", .playgo_scenario_id = "",