summaryrefslogtreecommitdiff
path: root/media-plugins/vdr-console/files/vdr-console-0.6.0-vdr-1.6.x-compilefix.diff
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-01-16 16:18:18 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-01-16 16:18:18 +0000
commit0704956f7256f1f618cc5e03af2c1dbd0e83dbc5 (patch)
tree881671532c0c3c82ebd4523b6d6cbc8ace982aae /media-plugins/vdr-console/files/vdr-console-0.6.0-vdr-1.6.x-compilefix.diff
parent21435953e16cda318a82334ddbadb3b5c36d9ea7 (diff)
gentoo resync : 16.01.2020
Diffstat (limited to 'media-plugins/vdr-console/files/vdr-console-0.6.0-vdr-1.6.x-compilefix.diff')
-rw-r--r--media-plugins/vdr-console/files/vdr-console-0.6.0-vdr-1.6.x-compilefix.diff79
1 files changed, 0 insertions, 79 deletions
diff --git a/media-plugins/vdr-console/files/vdr-console-0.6.0-vdr-1.6.x-compilefix.diff b/media-plugins/vdr-console/files/vdr-console-0.6.0-vdr-1.6.x-compilefix.diff
deleted file mode 100644
index 35aac3e0e263..000000000000
--- a/media-plugins/vdr-console/files/vdr-console-0.6.0-vdr-1.6.x-compilefix.diff
+++ /dev/null
@@ -1,79 +0,0 @@
-http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-console/trunk/debian/patches/94_console-1.6.0.dpatch?op=file&rev=0&sc=0
-
-by Tobias Grimm <tg@e-tobi.net>
---- vdr-plugin-console-0.6.0.orig/menu.c
-+++ vdr-plugin-console-0.6.0/menu.c
-@@ -24,7 +24,7 @@
-
-
-
--#include "fontsmallfix.c"
-+//#include "fontsmallfix.c"
- #include "symbols/bell.xpm"
- #include "symbols/keyboard.xpm"
-
-@@ -59,31 +59,11 @@
- if (backColor != clrConsoleTransparent)
- bitmap.DrawRectangle(x, y, x + w - 1, y + h - 1, backColor);
-
-- const cFont::tCharData* CharData = font.CharData(ch);
-+ char text[2];
-+ text[1] = 0;
-+ text[0] = ch;
-
-- // Center the char within its cell
-- x += (w - (int)CharData->width) / 2;
-- if (w > (int)CharData->width)
-- w = (int)CharData->width;
--
-- for (int row = 0; row < h; ++row) {
--
-- cFont::tPixelData PixelData = CharData->lines[row];
--//@@TEST
-- PixelData >>= 1;
-- for (int col = w; col-- > 0;) {
--
-- if (PixelData & 1) {
-- bitmap.SetIndex(x + col, y + row, fg);
--
-- // Try to fix flickering
--// if (*bitmap.Data(x + col, y + row - 1) != fg)
--// bitmap.SetIndex(x + col, y + row + 1, fg);
-- }
--
-- PixelData >>= 1;
-- }
-- }
-+ bitmap.DrawText(x, y, text, foreColor, backColor, &font);
-
- } else {
-
-@@ -794,22 +774,22 @@
- // Small
- _pFont = cFont::GetFont(fontSml);
- _charW = _pFont->Width('A');
-- _charH = _pFont->Height('A');
-+ _charH = _pFont->Height("A");
-
- } else if (_selectedFont == 2) {
-
- // Extra small
- // The space between the chars can shrink, so more chars can go to the screen.
-- _pFont = new cFont(consFontSmallFix);
-- _charW = _pFont->Width('A') - 1;
-- _charH = _pFont->Height('A') - 1;
-+ _pFont = cFont::GetFont(fontOsd);
-+ _charW = _pFont->Width('A');
-+ _charH = _pFont->Height("A");
-
- } else {
-
- // Normal
- _pFont = cFont::GetFont(fontFix);
- _charW = _pFont->Width('A');
-- _charH = _pFont->Height('A');
-+ _charH = _pFont->Height("A");
- }
-
- _charsW = (_pixelW / _charW);
-