aboutsummaryrefslogtreecommitdiffstats
path: root/common/rfb/Pixel.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/rfb/Pixel.h')
-rw-r--r--common/rfb/Pixel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/rfb/Pixel.h b/common/rfb/Pixel.h
index 4e9d1644..ce1d7b15 100644
--- a/common/rfb/Pixel.h
+++ b/common/rfb/Pixel.h
@@ -18,9 +18,9 @@
#ifndef __RFB_PIXEL_H__
#define __RFB_PIXEL_H__
-#include <rdr/types.h>
+#include <stdint.h>
namespace rfb {
- typedef rdr::U32 Pixel; // must be big enough to hold any pixel value
+ typedef uint32_t Pixel; // must be big enough to hold any pixel value
}
#endif