|
From: Stefano A. <xa...@us...> - 2010-05-18 20:39:48
|
Module: performous
Branch: master
Commit: f0056823956481883d2aacedbe9074ed729a5d63
Author: Xaldyz <xa...@us...>
Date: Tue May 18 22:39:36 2010 +0200
Fixed uint8_t using boost libraries
---
game/webcam.hh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/game/webcam.hh b/game/webcam.hh
index 6ed0585..5754f3d 100644
--- a/game/webcam.hh
+++ b/game/webcam.hh
@@ -17,7 +17,7 @@ typedef void CvCapture;
struct CamFrame {
int width;
int height;
- std::vector<uint8_t> data;
+ std::vector<boost::uint8_t> data;
};
class Webcam {
|