aboutsummaryrefslogtreecommitdiff
path: root/gui/themes
diff options
context:
space:
mode:
authorEugene Sandulenko2011-10-23 23:31:23 +0100
committerEugene Sandulenko2011-10-23 23:44:14 +0100
commit4c08fccf589e9c2eab87c53bae912b3f0d23b323 (patch)
tree46292fcab85f52ea673ac9a2db0df561ac525629 /gui/themes
parentf1165b0b6ead53b68443c649cc544016ad119b1d (diff)
downloadscummvm-rg350-4c08fccf589e9c2eab87c53bae912b3f0d23b323.tar.gz
scummvm-rg350-4c08fccf589e9c2eab87c53bae912b3f0d23b323.tar.bz2
scummvm-rg350-4c08fccf589e9c2eab87c53bae912b3f0d23b323.zip
GUI: Add support for PNG images in themes
Diffstat (limited to 'gui/themes')
-rwxr-xr-xgui/themes/scummtheme.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/themes/scummtheme.py b/gui/themes/scummtheme.py
index e4e9549265..874df03017 100755
--- a/gui/themes/scummtheme.py
+++ b/gui/themes/scummtheme.py
@@ -5,7 +5,7 @@ import re
import os
import zipfile
-THEME_FILE_EXTENSIONS = ('.stx', '.bmp', '.fcc')
+THEME_FILE_EXTENSIONS = ('.stx', '.bmp', '.fcc', '.png')
def buildTheme(themeName):
if not os.path.isdir(themeName) or not os.path.isfile(os.path.join(themeName, "THEMERC")):