Skip to content

Commit

Permalink
Fix psp again ..
Browse files Browse the repository at this point in the history
  • Loading branch information
LiEnby committed Jul 31, 2023
1 parent c2f8e38 commit 02d4f97
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/pkgi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1078,18 +1078,15 @@ void pkgi_start_download(Downloader& downloader, const DbItem& item)
)
{

if (MODE_IS_PSPEMU(mode))
if (MODE_IS_PSPEMU(mode)) {
pkgi_create_psp_rif(item.content, rif);

}

pkgi_start_bgdl(
mode_to_bgdl_type(mode),
item.name,
item.url,
item.zrif.empty()
? std::vector<uint8_t>{}
: std::vector<uint8_t>(
rif, rif + PKGI_PSM_RIF_SIZE));
std::vector<uint8_t>(rif, rif + PKGI_PSM_RIF_SIZE));
pkgi_dialog_message(
fmt::format(
"Installation of {} queued in LiveArea",
Expand Down

0 comments on commit 02d4f97

Please sign in to comment.