diff options
Diffstat (limited to 'Source/Core/DolphinWX/Src/NetFunctions.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Src/NetFunctions.cpp | 2 |
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++)
|
