Files
1960-utils/Texturing/OptimizeTextures/freeze_support.py
Killergnom d03908baab Various changes to optimizeTextures
Fixed Multithreading, fixed a bug with alpha channels and changed the output format to tga.
2025-04-06 21:26:34 +02:00

6 lines
143 B
Python

import multiprocessing
import sys
if getattr(sys, 'frozen', False):
# Running as a frozen executable
multiprocessing.freeze_support()