summaryrefslogtreecommitdiff
path: root/src/client/Client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/Client.cpp')
-rw-r--r--src/client/Client.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/Client.cpp b/src/client/Client.cpp
index 5054dc4..112bdf1 100644
--- a/src/client/Client.cpp
+++ b/src/client/Client.cpp
@@ -235,6 +235,7 @@ unsigned char * Client::GetSaveData(int saveID, int saveDate, int & dataLength)
{
urlStream << "http://" << STATICSERVER << "/" << saveID << ".cps";
}
+ std::cout << urlStream.str() << std::endl;
data = (unsigned char *)http_simple_get((char *)urlStream.str().c_str(), &dataStatus, &dataLength);
if(data && dataStatus == 200)
{