summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Src/NetFunctions.cpp
diff options
context:
space:
mode:
authorsl1nk3.s <sl1nk3.s@gmail.com>2009-05-13 22:27:42 +0000
committersl1nk3.s <sl1nk3.s@gmail.com>2009-05-13 22:27:42 +0000
commit560c4111ae2dc577689bf7f3fc3577713ab6fd16 (patch)
tree102d227b50b15651fc8cb5b76d1d466f623a0c4b /Source/Core/DolphinWX/Src/NetFunctions.cpp
parentb9cdcb18198caabf1a1640e48c0f2cea954edeba (diff)
x64 build fix here we go
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3222 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DolphinWX/Src/NetFunctions.cpp')
-rw-r--r--Source/Core/DolphinWX/Src/NetFunctions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Src/NetFunctions.cpp b/Source/Core/DolphinWX/Src/NetFunctions.cpp
index fd4c65b8f1..4ac111f5e5 100644
--- a/Source/Core/DolphinWX/Src/NetFunctions.cpp
+++ b/Source/Core/DolphinWX/Src/NetFunctions.cpp
@@ -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++)