Changeset 2256 for libcaca


Ignore:
Timestamp:
Mar 2, 2008, 5:30:31 PM (15 years ago)
Author:
Jean-Yves Lamoureux
Message:
  • Oops, bad type (char instead of uint32) after ellipse rendering

improvement.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcaca/trunk/cucul/conic.c

    r2255 r2256  
    252252
    253253    if((b & (0x1|0x4)) == (0x1|0x4)) {
    254         char c = ch;
     254        uint32_t c = ch;
    255255       
    256256        if(thin) {
     
    274274    }
    275275    if((b & (0x2|0x4)) == (0x2|0x4)) {
    276         char c = ch;
     276        uint32_t c = ch;
    277277       
    278278        if(thin) {
     
    298298
    299299    if((b & (0x1|0x8)) == (0x1|0x8)) {
    300         char c = ch;
     300        uint32_t c = ch;
    301301       
    302302        if(thin) {
     
    321321
    322322    if((b & (0x2|0x8)) == (0x2|0x8)) {
    323         char c = ch;
     323        uint32_t c = ch;
    324324       
    325325        if(thin) {
Note: See TracChangeset for help on using the changeset viewer.