Skip to content

Commit

Permalink
Update shader processing script to remove '_ps' prefix requirement fo…
Browse files Browse the repository at this point in the history
…r version detection
  • Loading branch information
Srlion committed Feb 3, 2025
1 parent f604b90 commit cd49d58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/process_shaders.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ while ($null -ne ($line = $fileList.ReadLine())) {
$version = $null

# Determine version based on filename suffix
if ($fileName -match '_ps(2x|30|40|41|50|51)$') {
if ($fileName -match '(2x|30|40|41|50|51)$') {
$suffix = $matches[1]
switch ($suffix) {
'2x' { $version = '20b' }
Expand Down

0 comments on commit cd49d58

Please sign in to comment.