x64 build fix here we go

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3222 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
sl1nk3.s
2009-05-13 22:27:42 +00:00
parent b9cdcb1819
commit 560c4111ae
5 changed files with 10 additions and 10 deletions

View File

@ -343,7 +343,7 @@ void NetPlay::ChangeSelectedGame(std::string game)
if (game != m_selectedGame)
{
unsigned char value = 0x35;
int game_size = game.size();
int game_size = (int)game.size();
// Send command then Game String
for (int i=0; i < m_numClients ; i++)