3 Commits

Author SHA1 Message Date
9dffce56a5 welcome.htm: kpack it and add to the img (en_US)
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 23s
Build system / Build (pull_request) Successful in 4m49s
2025-03-20 01:13:10 +03:00
f2826efa87 [Docs/Welcome.htm] Fix #168, language style updates 2025-03-20 01:10:53 +03:00
b1a1691b84 Libimg: fixed a bug when rotating images smaller than 2 pixels
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 31s
Build system / Build (pull_request) Successful in 5m17s
2025-03-19 11:37:12 +02:00

View File

@@ -1053,6 +1053,8 @@ endl
test [_flip_kind], FLIP_VERTICAL
jz .dont_flip_vert
cmp dword [ebx + Image.Height], 2
jl .dont_flip_vert
imul eax, ecx
sub eax, [scanline_len]
@@ -1101,6 +1103,8 @@ endl
test [_flip_kind], FLIP_HORIZONTAL
jz .exit
cmp dword [ebx + Image.Width], 2
jl .exit
mov ecx, [ebx + Image.Height]
mov eax, [ebx + Image.Type]