diff options
author | Johns <johns98@gmx.net> | 2015-03-10 10:20:53 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2015-03-10 10:20:53 +0100 |
commit | 915dff8714f10732b2e23cf43f0fc2860ac5cb1d (patch) | |
tree | daf944f875973674e92cb955746511df5c0e04e8 /video.c | |
parent | ca0181b1b12af971a892418f8c6ac3ec90bb97a0 (diff) | |
download | vdr-plugin-softhddevice-915dff8714f10732b2e23cf43f0fc2860ac5cb1d.tar.gz vdr-plugin-softhddevice-915dff8714f10732b2e23cf43f0fc2860ac5cb1d.tar.bz2 |
Fix bug: need signed char, if compiler has unsigned chars.
Diffstat (limited to 'video.c')
-rw-r--r-- | video.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |