diff options
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hle/service/nfp/nfp.cpp | 4 | ||||
| -rw-r--r-- | src/core/hle/service/sockets/bsd.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/nfp/nfp.cpp b/src/core/hle/service/nfp/nfp.cpp index e0ed3f771..037b86653 100644 --- a/src/core/hle/service/nfp/nfp.cpp +++ b/src/core/hle/service/nfp/nfp.cpp | |||
| @@ -800,12 +800,12 @@ Result Module::Interface::Flush() { | |||
| 800 | 800 | ||
| 801 | // Return to the start of the file | 801 | // Return to the start of the file |
| 802 | if (!amiibo_file.Seek(0)) { | 802 | if (!amiibo_file.Seek(0)) { |
| 803 | LOG_ERROR(Service_NFP, "Error writting to file"); | 803 | LOG_ERROR(Service_NFP, "Error writing to file"); |
| 804 | return ErrCodes::WriteAmiiboFailed; | 804 | return ErrCodes::WriteAmiiboFailed; |
| 805 | } | 805 | } |
| 806 | 806 | ||
| 807 | if (!amiibo_file.Write(encrypted_tag_data)) { | 807 | if (!amiibo_file.Write(encrypted_tag_data)) { |
| 808 | LOG_ERROR(Service_NFP, "Error writting to file"); | 808 | LOG_ERROR(Service_NFP, "Error writing to file"); |
| 809 | return ErrCodes::WriteAmiiboFailed; | 809 | return ErrCodes::WriteAmiiboFailed; |
| 810 | } | 810 | } |
| 811 | 811 | ||
diff --git a/src/core/hle/service/sockets/bsd.cpp b/src/core/hle/service/sockets/bsd.cpp index cc679cc81..9e94a462f 100644 --- a/src/core/hle/service/sockets/bsd.cpp +++ b/src/core/hle/service/sockets/bsd.cpp | |||
| @@ -929,7 +929,7 @@ BSD::BSD(Core::System& system_, const char* name) | |||
| 929 | proxy_packet_received = room_member->BindOnProxyPacketReceived( | 929 | proxy_packet_received = room_member->BindOnProxyPacketReceived( |
| 930 | [this](const Network::ProxyPacket& packet) { OnProxyPacketReceived(packet); }); | 930 | [this](const Network::ProxyPacket& packet) { OnProxyPacketReceived(packet); }); |
| 931 | } else { | 931 | } else { |
| 932 | LOG_ERROR(Service, "Network isn't initalized"); | 932 | LOG_ERROR(Service, "Network isn't initialized"); |
| 933 | } | 933 | } |
| 934 | } | 934 | } |
| 935 | 935 | ||