Fixed bad resize_non_zeroed impl (cannot use default_resize_bytes_align_non_zeroed, its not a resize)

This commit is contained in:
2024-03-19 12:18:39 -04:00
parent 2c321b27fc
commit bf211a8e14
15 changed files with 35 additions and 122 deletions

View File

@ -41,7 +41,7 @@ function Update-GitRepo
pop-location
git -C $path rev-parse HEAD | out-file $last_built_commit
$binaries_dirty = $true
$script:binaries_dirty = $true
return
}
@ -63,7 +63,7 @@ function Update-GitRepo
pop-location
$latest_commit_hash | out-file $last_built_commit
$binaries_dirty = $true
$script:binaries_dirty = $true
write-host
}
@ -91,7 +91,7 @@ $path_vendor = join-path $path_odin 'vendor'
$path_vendor_raylib = join-path $path_vendor 'raylib'
$path_raylib_dlls = join-path $path_vendor_raylib 'windows'
if ( $binaries_dirty )
if ( $binaries_dirty -or $true )
{
$third_party_dlls = Get-ChildItem -Path $path_raylib_dlls -Filter '*.dll'
foreach ($dll in $third_party_dlls) {