Changeset 8271c78 in network-game for client/Client
- Timestamp:
- Aug 1, 2013, 2:15:49 AM (11 years ago)
- Branches:
- master
- Children:
- f9cb9fb
- Parents:
- d05086b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
client/Client/main.cpp
rd05086b r8271c78 20 20 #include <iostream> 21 21 #include <sstream> 22 #include <fstream> 22 23 #include <map> 23 24 … … 126 127 bool fullscreen = false; 127 128 debugging = false; 129 ofstream outputLog; 128 130 129 131 scoreBlue = 0; … … 136 138 return -1; 137 139 } 140 141 outputLog.open("client.log", ios::app); 142 outputLog << "Started client on " << getCurrentDateTimeString() << endl; 138 143 139 144 if (al_init_primitives_addon()) … … 496 501 al_destroy_display(display); 497 502 al_destroy_timer(timer); 498 503 504 outputLog << "Stopped client on " << getCurrentDateTimeString() << endl; 505 outputLog.close(); 506 499 507 return 0; 500 508 }
Note:
See TracChangeset
for help on using the changeset viewer.