Ignore:
Timestamp:
12/07/03 13:09:00 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Cosy/gui/MGImage.cc

    r2518 r2613  
    8787    while (s<e)
    8888    {
    89         //      11111100    11111000      11111100
    90         *d++ = (*s&0xfc) | (*s&0xf8)<<5 | (*s&0xfc)<<11;
     89        //      11111100    11111000      11111000
     90        *d++ = (*s&0xfc) | (*s&0xf8)<<5 | (*s&0xf8)<<11;
    9191        s++;
    9292    }
     
    109109void MGImage::DrawImg(const byte *buffer)
    110110{
    111     if (fMuxPixmap->TryLock()==13)
     111    if (fMuxPixmap->TryLock())
    112112        return;
    113113
     
    181181void MGImage::DrawColImg(const byte *gbuf, const byte *cbuf)
    182182{
    183     if (fMuxPixmap->TryLock()==13)
     183    if (fMuxPixmap->TryLock())
    184184        return;
    185185
Note: See TracChangeset for help on using the changeset viewer.