Fresco/SDL/src Console.cc,1.16,1.17
Tobias Hunger <[email protected]> Sun, 08 Feb 2004 00:44:12 +0100
| Newsgroups | gmane.comp.video.fresco.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvs/fresco/Fresco/SDL/src
In directory purcel:/tmp/cvs-serv3291/SDL/src
Modified Files:
Console.cc
Log Message:
Patch from Bernhard Fischer (cow): Misc. spelling and typo fixes, added Doku.
Index: Console.cc
===================================================================
RCS file: /cvs/fresco/Fresco/SDL/src/Console.cc,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- Console.cc 29 Dec 2003 08:43:25 -0000 1.16
+++ Console.cc 7 Feb 2004 23:43:31 -0000 1.17
@@ -348,7 +348,7 @@
// in that code cannot influence the highlighting.
if (is_gl())
{
- std::cer << "Region Management Debugging does not work "
+ std::cerr << "Region Management Debugging does not work "
<< "with OpenGL on SDL."
<< std::endl;
return;
@@ -371,7 +371,7 @@
pf->Rmask, pf->Gmask, pf->Bmask, pf->Amask);
// make a backup:
- SDL_BlitSurface(screen, 0, _backup, 0);
+ SDL_BlitSurface(screen, 0, my_backup, 0);
// fill region:
SDL_FillRect(screen,
@@ -387,7 +387,7 @@
select(0, 0, 0, 0, &tv);
// restore old content
- SDL_BlitSurface(_backup, NULL, screen, NULL);
+ SDL_BlitSurface(my_backup, NULL, screen, NULL);
SDL_UpdateRect(screen, 0, 0, 0, 0);
#endif
}