Skip to content

Commit

Permalink
Merge pull request #12794 from unknownbrackets/net-minor2
Browse files Browse the repository at this point in the history
Net: Correct pool allocation
  • Loading branch information
hrydgard committed Apr 5, 2020
2 parents 350589d + 91e1e75 commit a0cdf56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/HLE/sceNet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ void __NetDoState(PointerWrap &p) {
}

static inline u32 AllocUser(u32 size, bool fromTop, const char *name) {
u32 addr = userMemory.Alloc(size, true, "netstack1");
u32 addr = userMemory.Alloc(size, fromTop, name);
if (addr == -1)
return 0;
return addr;
Expand Down

0 comments on commit a0cdf56

Please sign in to comment.