Skip to content

Instantly share code, notes, and snippets.

@scheibo
Created June 1, 2011 21:08
Show Gist options
  • Select an option

  • Save scheibo/1003327 to your computer and use it in GitHub Desktop.

Select an option

Save scheibo/1003327 to your computer and use it in GitHub Desktop.
//line 1647 xdraws
if(base.mode & ATTR_REVERSE)
if (base.mode & ATTR_BOLD)
xfg = dc.col[base.bg+8], xbg = dc.col[base.fg];
else
xfg = dc.col[base.bg], xbg = dc.col[base.fg];
else
if (base.mode & ATTR_BOLD)
xfg = dc.col[base.fg+8], xbg = dc.col[base.bg];
else
xfg = dc.col[base.fg], xbg = dc.col[base.bg];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment