Examples adjustments.
* French to English punctuation. * Pong and Shader use fixed-sized windows now (especially on tiling window managers, the windows will be resized automatically, thus making the examples look and also behave weirdly).
This commit is contained in:
parent
6ef3cb27a1
commit
40ae3ce175
5 changed files with 8 additions and 6 deletions
|
@ -25,12 +25,12 @@ int main()
|
|||
|
||||
// TCP, UDP or connected UDP ?
|
||||
char protocol;
|
||||
std::cout << "Do you want to use TCP (t) or UDP (u) ? ";
|
||||
std::cout << "Do you want to use TCP (t) or UDP (u)? ";
|
||||
std::cin >> protocol;
|
||||
|
||||
// Client or server ?
|
||||
char who;
|
||||
std::cout << "Do you want to be a server (s) or a client (c) ? ";
|
||||
std::cout << "Do you want to be a server (s) or a client (c)? ";
|
||||
std::cin >> who;
|
||||
|
||||
if (protocol == 't')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue