summaryrefslogtreecommitdiff
path: root/font.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-12-02 11:30:19 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2006-12-02 11:30:19 +0100
commit19f39258f0b3131345c1b0b3aa1a5c03f88bc33a (patch)
treee031524a37d3ea229d11b33766e4233567f16412 /font.h
parent661da094e14b6ab76eae98a5eeb2c3ac6c914df4 (diff)
downloadvdr-19f39258f0b3131345c1b0b3aa1a5c03f88bc33a.tar.gz
vdr-19f39258f0b3131345c1b0b3aa1a5c03f88bc33a.tar.bz2
Replaced 'unsigned long long' with 'uint32_t' and 'uint64' with 'uint64_t' to avoid problems on 64-bit machines
Diffstat (limited to 'font.h')
-rw-r--r--font.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/font.h b/font.h
index 2a104294..3a3ece42 100644
--- a/font.h
+++ b/font.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: font.h 1.12 2006/02/05 13:46:36 kls Exp $
+ * $Id: font.h 1.13 2006/12/02 11:11:48 kls Exp $
*/
#ifndef __FONT_H
@@ -32,7 +32,7 @@ enum eDvbCode {
class cFont {
public:
enum { NUMCHARS = 256 };
- typedef unsigned long tPixelData;
+ typedef uint32_t tPixelData;
struct tCharData {
tPixelData width, height;
tPixelData lines[1];