diff options
Diffstat (limited to 'games/znibbles/files/patch-src_Player.C')
-rw-r--r-- | games/znibbles/files/patch-src_Player.C | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/games/znibbles/files/patch-src_Player.C b/games/znibbles/files/patch-src_Player.C deleted file mode 100644 index 2281f976e977..000000000000 --- a/games/znibbles/files/patch-src_Player.C +++ /dev/null @@ -1,33 +0,0 @@ ---- src/Player.C.orig 1999-05-11 02:17:08 UTC -+++ src/Player.C -@@ -36,7 +36,7 @@ - #include <string.h> - #include <time.h> - --#include <iostream.h> -+#include <iostream> - - #include "Player.H" - -@@ -78,7 +78,7 @@ void Player::add_description(Trame &t) - void Player::read_description(Trame &t) - { - if (t.get_char() != PLAYER_DESC) { -- cerr << "Player::read_description(): ohhh le bordel!\n"; -+ std::cerr << "Player::read_description(): ohhh le bordel!\n"; - exit(1); - } - -@@ -98,10 +98,10 @@ void Player::read_description(Trame &t) - // debug: print a brief representation of the player - void Player::display() - { -- cout << " ID:" << id << " Player #" << _number \ -+ std::cout << " ID:" << id << " Player #" << _number \ - << " '" << _name << "' score=" << _score << " frags=" \ - << _frag << " best=" << _best_length << " wid=" \ -- << worm_id<< endl; -+ << worm_id<< std::endl; - } - - |