Este site funciona melhor com JavaScript.
Página inicial
Ajuda
Acessar
cacalabs
/
libcaca
espelhamento de
https://github.com/cacalabs/libcaca.git
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Versões
7
Wiki
Atividade
Ver código fonte
* Ahahaha. Meet the "optimisation" that breaks everything.
tags/v0.99.beta14
Sam Hocevar
sam
19 anos atrás
pai
930abfc743
commit
3f7362eabb
1 arquivos alterados
com
6 adições
e
2 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+6
-2
cucul/import.c
+ 6
- 2
cucul/import.c
Ver arquivo
@@ -179,8 +179,12 @@ static cucul_canvas_t *import_text(void const *data, unsigned int size)
if(x >= width || y >= height)
{
width = x + 1;
height = y + 1;
if(x >= width)
width = x + 1;
if(y >= height)
height = y + 1;
cucul_set_canvas_size(cv, width, height);
}
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar