mirror of
https://github.com/Huntereb/Awoo-Installer
synced 2024-11-10 14:14:21 +00:00
Behemoth please
This commit is contained in:
parent
53671a9e42
commit
aef3b8f6d0
2 changed files with 4 additions and 4 deletions
|
@ -56,7 +56,7 @@ namespace tin::install::nsp
|
|||
}
|
||||
catch (std::exception& e)
|
||||
{
|
||||
LOG_DEBUG("An error occurred:\n%s", e.what());
|
||||
printf("An error occurred:\n%s", e.what());
|
||||
}
|
||||
|
||||
free(buf);
|
||||
|
@ -82,7 +82,7 @@ namespace tin::install::nsp
|
|||
const PFS0FileEntry* fileEntry = this->GetFileEntryByNcaId(placeholderId);
|
||||
std::string ncaFileName = this->GetFileEntryName(fileEntry);
|
||||
|
||||
LOG_DEBUG("Retrieving %s\n", ncaFileName.c_str());
|
||||
printf("Retrieving %s\n", ncaFileName.c_str());
|
||||
size_t ncaSize = fileEntry->fileSize;
|
||||
|
||||
tin::data::BufferedPlaceholderWriter bufferedPlaceholderWriter(contentStorage, placeholderId, ncaSize);
|
||||
|
|
4
source/util/usb_util.cpp
Normal file → Executable file
4
source/util/usb_util.cpp
Normal file → Executable file
|
@ -71,8 +71,8 @@ namespace tin::util
|
|||
while (cursize)
|
||||
{
|
||||
tmpsize = usbCommsWrite(bufptr, cursize);
|
||||
LOG_DEBUG("USB Bytes Written: \n");
|
||||
printBytes((u8*)bufptr, tmpsize, true);
|
||||
//LOG_DEBUG("USB Bytes Written: \n");
|
||||
//printBytes((u8*)bufptr, tmpsize, true);
|
||||
bufptr += tmpsize;
|
||||
cursize -= tmpsize;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue