mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
fix compile on linux
fixed some warnings. (gcc seems not to like char variables as array subscript) git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3330 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -56,7 +56,7 @@ void NetPlay::OnNetEvent(wxCommandEvent& event)
|
||||
m_numClients--;
|
||||
AppendText( wxString::Format(wxT("ERROR : Network Error !\n"
|
||||
"*Player : %s has been dropped from the game.\n\n"),
|
||||
event.GetString().mb_str()) );
|
||||
(const char *)event.GetString().mb_str()) );
|
||||
}
|
||||
}
|
||||
break;
|
||||
@ -518,7 +518,7 @@ bool ClientSide::isNewPadData(u32 *netValues, bool current, bool isVersus)
|
||||
|
||||
}
|
||||
|
||||
bool ServerSide::isNewPadData(u32 *netValues, bool current, char client)
|
||||
bool ServerSide::isNewPadData(u32 *netValues, bool current, int client)
|
||||
{
|
||||
#ifdef USE_TCP
|
||||
if (current)
|
||||
|
Reference in New Issue
Block a user