Skip to content

Commit

Permalink
Reduce sceNet mem footprint to 141 KBs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rinnegatamante committed Oct 26, 2024
1 parent 0558bd2 commit e85c619
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/luaNetwork.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#- All the devs involved in Rejuvenate and vita-toolchain --------------------------------------------------------------#
#- xerpi for drawing libs and for FTP server code ----------------------------------------------------------------------#
#-----------------------------------------------------------------------------------------------------------------------*/
#define NET_INIT_SIZE 1*1024*1024
#define NET_INIT_SIZE (141 * 1024)
#include <vitasdk.h>
#include <curl/curl.h>
#include <cstring>
Expand Down
2 changes: 1 addition & 1 deletion source/luaSound.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ static int audioThread(unsigned int args, void* arg) {
if (mus == NULL) {

//If we enter here, we probably are in the exiting procedure
if (mustExit){
if (mustExit) {
sceKernelSignalSema(Audio_Mutex, 1);
sceAudioOutReleasePort(ch);
return sceKernelExitDeleteThread(0);
Expand Down

0 comments on commit e85c619

Please sign in to comment.