mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 01:38:37 +12:00
More random changes
This commit is contained in:
parent
a485957130
commit
a16d8ba3ea
211 changed files with 576 additions and 748 deletions
|
@ -1,5 +1,4 @@
|
|||
#include "stdafx.h"
|
||||
#include <thread>
|
||||
#include "Emu/system_config.h"
|
||||
#include "np_handler.h"
|
||||
#include "Emu/Cell/PPUModule.h"
|
||||
|
@ -276,13 +275,10 @@ const SceNpAvatarUrl& np_handler::get_avatar_url() const
|
|||
|
||||
std::string np_handler::ip_to_string(u32 ip_addr)
|
||||
{
|
||||
std::string result;
|
||||
in_addr addr;
|
||||
addr.s_addr = ip_addr;
|
||||
|
||||
result = inet_ntoa(addr);
|
||||
|
||||
return result;
|
||||
return inet_ntoa(addr);
|
||||
}
|
||||
|
||||
std::string np_handler::ether_to_string(std::array<u8, 6>& ether)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue