Changeset 732c820 in thomson for tools/gfx2mo5/libraw2mo5.c


Ignore:
Timestamp:
Mar 4, 2013, 10:24:01 PM (11 years ago)
Author:
Adrien Destugues <pulkomandy@…>
Branches:
main
Children:
3b64f76
Parents:
b9b1bde
Message:

Allow to use the glitched mode, sometimes it's useful.

git-svn-id: svn://localhost/thomson@37 85ae3b6b-dc8f-4344-a89d-598714f2e4e5

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/gfx2mo5/libraw2mo5.c

    rb9b1bde r732c820  
    1111#include <string.h>
    1212
    13 unsigned char *raw2mo5(unsigned char *input)
     13unsigned char *raw2mo5(unsigned char *input, bool fixup)
    1414{
    1515  unsigned char *tmpBuffer;
     
    5858                }
    5959
     60                if (fore == 255) fore = 7;
    6061                if (fore != 255) {
    6162                        previous &= 0xF;
     
    7071                // are both FORME or both FOND, else we get an ugly glitch on the
    7172                // EFGJ033 Gate Array MO5!
    72                 if(oldlfo == !(tmpBuffer[(y*320+x)/8] & 0x80))
     73                if(fixup && oldlfo == !(tmpBuffer[(y*320+x)/8] & 0x80))
    7374                {
    7475                        previous = (previous >> 4) | (previous << 4);
Note: See TracChangeset for help on using the changeset viewer.