12 lines
435 B
Diff
12 lines
435 B
Diff
--- xbmc-12.0/tools/Linux/FEH.py 2013-01-29 14:20:27.000000000 +0000
|
|
+++ xbmc-12.0/tools/Linux/FEH.py.rpifix 2013-02-19 21:37:17.993695968 +0000
|
|
@@ -145,7 +145,7 @@
|
|
for line in out.readlines():
|
|
match = p.search(line)
|
|
if (match is not None):
|
|
- if int(match.group(1)) > 16:
|
|
+ if int(match.group(1)) >= 16:
|
|
bitDepth = False
|
|
else:
|
|
bitDepth = True
|