summaryrefslogtreecommitdiffstats
path: root/gles3_builders.py
diff options
context:
space:
mode:
authorA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2024-03-24 18:02:56 +0100
committerA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2024-03-24 18:02:56 +0100
commit4933fa8bf5119e605e53f06a632cfabfcd991032 (patch)
tree0eb064aba5a7a044c0d9813dfb6df27ebe0d3001 /gles3_builders.py
parent99ff024f78f65ba0bc54fb409cfeca43ba2008fe (diff)
downloadredot-engine-4933fa8bf5119e605e53f06a632cfabfcd991032.tar.gz
[Buildsystem] Fix encoding when reading files
Diffstat (limited to 'gles3_builders.py')
-rw-r--r--gles3_builders.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gles3_builders.py b/gles3_builders.py
index 985e9d547c..cf7c74f32d 100644
--- a/gles3_builders.py
+++ b/gles3_builders.py
@@ -31,7 +31,7 @@ class GLES3HeaderStruct:
def include_file_in_gles3_header(filename: str, header_data: GLES3HeaderStruct, depth: int):
- with open(filename, "r") as fs:
+ with open(filename, "r", encoding="utf-8") as fs:
line = fs.readline()
while line: