Explorar el Código

* Remove white and yellow colors for letters

tags/v0.99.beta17
Nicolas Vion nico hace 16 años
padre
commit
28a91b7d51
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      caca-php/examples/www/figlet.php

+ 1
- 1
caca-php/examples/www/figlet.php Ver fichero

@@ -44,7 +44,7 @@ function show_figlet($str, $font) {
$chars = unistr_to_ords($str);
$color = 0;
foreach ($chars as $c) {
caca_set_color_ansi($cv, 1 + (($color += 4) % 15), CACA_WHITE);
caca_set_color_ansi($cv, 1 + (($color += 1) % 13), CACA_WHITE);
caca_put_figchar($cv, $c);
}



Cargando…
Cancelar
Guardar