mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-12 20:17:49 +00:00
GUI: Exclude fonts-cjk from theme building
This commit is contained in:
parent
730c546c00
commit
dd5c527ef9
@ -50,7 +50,7 @@ def buildTheme(themeName):
|
||||
|
||||
def buildAllThemes():
|
||||
for f in os.listdir('.'):
|
||||
if os.path.isdir(os.path.join('.', f)) and not f[0] == '.' and not f.startswith("common") and not f == "fonts":
|
||||
if os.path.isdir(os.path.join('.', f)) and not f[0] == '.' and not f.startswith("common") and not f == "fonts" and not f == "fonts-cjk":
|
||||
buildTheme(f)
|
||||
|
||||
def parseSTX(theme_file, def_file, subcount):
|
||||
|
Loading…
Reference in New Issue
Block a user