From 915dff8714f10732b2e23cf43f0fc2860ac5cb1d Mon Sep 17 00:00:00 2001 From: Johns Date: Tue, 10 Mar 2015 10:20:53 +0100 Subject: Fix bug: need signed char, if compiler has unsigned chars. --- video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'video.c') diff --git a/video.c b/video.c index 288cb7b..aae0096 100644 --- a/video.c +++ b/video.c @@ -332,7 +332,7 @@ static const VideoModule NoopModule; ///< forward definition of noop module /// selected video module static const VideoModule *VideoUsedModule = &NoopModule; -char VideoHardwareDecoder = -1; ///< flag use hardware decoder +signed char VideoHardwareDecoder = -1; ///< flag use hardware decoder static char VideoSurfaceModesChanged; ///< flag surface modes changed -- cgit v1.2.3