mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
740 B

  1. --- ./Sources/Display/Display/DirectFB/target_directfb.cpp.orig 2003-08-05 15:59:59.000000000 +0200
  2. +++ ./Sources/Display/Display/DirectFB/target_directfb.cpp 2003-08-05 16:00:38.000000000 +0200
  3. @@ -104,7 +104,7 @@
  4. unsigned int CL_Target_DirectFB::get_width() const
  5. {
  6. - unsigned int width = 0;
  7. + int width = 0;
  8. surface->GetSize (surface, &width, NULL);
  9. @@ -113,7 +113,7 @@
  10. unsigned int CL_Target_DirectFB::get_height() const
  11. {
  12. - unsigned int height = 0;
  13. + int height = 0;
  14. surface->GetSize (surface, NULL, &height);
  15. @@ -263,7 +263,7 @@
  16. void CL_Target_DirectFB::Clear (float r, float g, float b, float a)
  17. {
  18. - unsigned int width, height;
  19. + int width, height;
  20. surface->GetSize (surface, &width, &height);