summaryrefslogtreecommitdiffstats
path: root/common/rdr
diff options
context:
space:
mode:
authorDRC <dcommander@users.sourceforge.net>2011-08-19 03:13:47 +0000
committerDRC <dcommander@users.sourceforge.net>2011-08-19 03:13:47 +0000
commit887c5fd86e052f31a4cd039b5634a16af7c8e780 (patch)
treed5f1feaa01d2f8c3ac8dbc79438381805b420e00 /common/rdr
parente3ffcf7337b4567765a78abdcf3b5f63d381bc08 (diff)
downloadtigervnc-887c5fd86e052f31a4cd039b5634a16af7c8e780.tar.gz
tigervnc-887c5fd86e052f31a4cd039b5634a16af7c8e780.zip
Make rawBytesEquivalent an unsigned 64-bit integer. Otherwise, it will overflow in less than a minute if using a full-screen video or 3D application.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4639 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common/rdr')
-rw-r--r--common/rdr/types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/rdr/types.h b/common/rdr/types.h
index 458a13e6..05d27773 100644
--- a/common/rdr/types.h
+++ b/common/rdr/types.h
@@ -24,6 +24,7 @@ namespace rdr {
typedef unsigned char U8;
typedef unsigned short U16;
typedef unsigned int U32;
+ typedef unsigned long long U64;
typedef signed char S8;
typedef signed short S16;
typedef signed int S32;