pdcurses/pdcurses.rc

Fri, 24 Jul 2015 04:24:38 +0300

author
Teemu Piippo <tsapii@utu.fi>
date
Fri, 24 Jul 2015 04:24:38 +0300
changeset 100
d301ead29d7c
parent 97
2d43f05b284c
permissions
-rw-r--r--

Apply Leonard's patch for fixing the colors:

The colors were broken again.
* isprint for some reason returned true when the given byte is higher than 255.
The char cast of the byte was then printed which resulted in odd characters
popping up. Black appeared as ^@ which is NULL in caret notation.
* After that, the colors were all messed up because the RLINE enum didn't take
in account the color swapping.
So instead of messing up the enum order/number I went for a new "range-like"
method.
* After fixing all of that, I noticed the Interface::render_colorline had a
broken loop since the VS2010 commits.
This made the lines not print entierely and messed up the colors etc.

#include "winver.h"

1 VERSIONINFO
 FILEVERSION 3,4,0,0
 PRODUCTVERSION 3,4,0,0
 FILEFLAGSMASK 0x3fL
 FILEFLAGS 0x0L
 FILEOS VOS_UNKNOWN
 FILETYPE VFT_DLL
 FILESUBTYPE 0x0L
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK "040904b0"
        BEGIN
            VALUE "Maintainer", "William McBrine\0"
            VALUE "FileDescription", "Public Domain Curses\0"
            VALUE "FileVersion", "3.4.0\0"
            VALUE "InternalName", "PDCurses\0"
            VALUE "LegalCopyright", "Public Domain\0"
            VALUE "OriginalFilename", "PDCURSES.DLL\0"
            VALUE "ProductName", "Public Domain Curses Library\0"
            VALUE "ProductVersion", "3.4.0\0"
        END
    END
END

1 ICON    DISCARDABLE     "PDCURSES.ico"

mercurial