Procházet zdrojové kódy

* Don't crash if Blit()'s second canvas argument is NULL (which is valid).

tags/v0.99.beta14
Sam Hocevar sam před 18 roky
rodič
revize
8f5b6c1fbd
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. +2
    -1
      cxx/cucul++.cpp

+ 2
- 1
cxx/cucul++.cpp Zobrazit soubor

@@ -132,7 +132,8 @@ void Cucul::Clear(void)

void Cucul::Blit(int x, int y, Cucul* c1, Cucul* c2)
{
cucul_blit(cv, x, y, c1->get_cucul_canvas_t(), c2->get_cucul_canvas_t());
cucul_blit(cv, x, y, c1->get_cucul_canvas_t(),
c2 ? c2->get_cucul_canvas_t() : NULL);
}

void Cucul::Invert()


Načítá se…
Zrušit
Uložit