Thread: Quick question

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Registered User
    Join Date
    Aug 2001
    Posts
    411

    Quick question

    I am working on a TGA image loader, the last bit of an RLE packet determines the type of packet. I see where someone did this to make that determination, but I really dont understand whats going on here.

    Code:
             
    byte packetHeader;
    
    //packetHeader is read in from the file
       
    if ((packetHeader & 128) == 128)  
    {
       //RLE
    }
    else
    {
       //normal
    }
    Im just getting back to coding, and some things im fuzzy on. But byte is the same as unsigned char right?
    Last edited by Eber Kain; 10-20-2005 at 08:00 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Very quick math question
    By jverkoey in forum A Brief History of Cprogramming.com
    Replies: 8
    Last Post: 10-26-2005, 11:05 PM
  2. very quick question.
    By Unregistered in forum C++ Programming
    Replies: 7
    Last Post: 07-24-2002, 03:48 AM
  3. quick question
    By Unregistered in forum C++ Programming
    Replies: 5
    Last Post: 07-22-2002, 04:44 AM
  4. Quick Question Regarding Pointers
    By charash in forum C++ Programming
    Replies: 4
    Last Post: 05-04-2002, 11:04 AM
  5. Quick question: exit();
    By Cheeze-It in forum C Programming
    Replies: 6
    Last Post: 08-15-2001, 05:46 PM