diff options
Diffstat (limited to 'games/znibbles/files/patch-src__Niblle.C')
-rw-r--r-- | games/znibbles/files/patch-src__Niblle.C | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/games/znibbles/files/patch-src__Niblle.C b/games/znibbles/files/patch-src__Niblle.C new file mode 100644 index 000000000000..36b809e701cf --- /dev/null +++ b/games/znibbles/files/patch-src__Niblle.C @@ -0,0 +1,25 @@ +--- src/Nibble.C Tue Nov 17 19:36:32 1998 ++++ src/Nibble.C Sat Oct 26 00:40:26 2002 +@@ -58,7 +58,7 @@ + void Nibble:: read_description(Trame &t) + { + if (t.get_char() != NEW_NIBBLE) { +- cerr << "Nibble::read_description(): ohhh le bordel!\n"; ++ std::cerr << "Nibble::read_description(): ohhh le bordel!\n"; + exit(1); + } + +@@ -81,10 +81,10 @@ + + void Nibble::display() + { +- cout << " ID:"<< id; ++ std::cout << " ID:"<< id; + printf(" %04x", classtype); +- cout << " Nibble " << pos.x << "x" << pos.y << " value=" << value +- << " type=" << type << endl; ++ std::cout << " Nibble " << pos.x << "x" << pos.y << " value=" << value ++ << " type=" << type << std::endl; + } + + |