From 7df8c118d4036ef0e5e0f50b24fbe2d4fb5bd911 Mon Sep 17 00:00:00 2001 From: Kyran Butler Date: Tue, 2 Oct 2018 13:20:36 -0600 Subject: [PATCH] Slightly changed wording of LOG_ERROR statements. More grammatically correct. --- src/citra/citra.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/citra/citra.cpp b/src/citra/citra.cpp index 6646c0122..be2067fcf 100644 --- a/src/citra/citra.cpp +++ b/src/citra/citra.cpp @@ -90,11 +90,11 @@ static void OnStateChanged(const Network::RoomMember::State& state) { case Network::RoomMember::State::NameCollision: LOG_ERROR( Network, - "You tried to use the same nickname then another user that is connected to the Room"); + "You tried to use the same nickname as another user that is connected to the Room"); exit(1); break; case Network::RoomMember::State::MacCollision: - LOG_ERROR(Network, "You tried to use the same MAC-Address then another user that is " + LOG_ERROR(Network, "You tried to use the same MAC-Address as another user that is " "connected to the Room"); exit(1); break; @@ -104,7 +104,7 @@ static void OnStateChanged(const Network::RoomMember::State& state) { break; case Network::RoomMember::State::WrongVersion: LOG_ERROR(Network, - "You are using a different version then the room you are trying to connect to"); + "You are using a different version than the room you are trying to connect to"); exit(1); break; default: