summaryrefslogtreecommitdiffhomepage
path: root/Public/Developer/SystemLib/Sources
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-04-27 08:43:21 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-04-27 08:43:21 +0200
commitd7519f338b544624145997576d2800f9670aa699 (patch)
treec0e4045729a2017aea1eeb04a27eb8e115a12223 /Public/Developer/SystemLib/Sources
parentd10241467cc3f77988927a48a4384f63297465dd (diff)
MHR-18: Kernel patches, improved documentation and new FloatType in
user-space SystemLib. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Public/Developer/SystemLib/Sources')
-rw-r--r--Public/Developer/SystemLib/Sources/Wm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Public/Developer/SystemLib/Sources/Wm.c b/Public/Developer/SystemLib/Sources/Wm.c
index 79eda22a..72ae5919 100644
--- a/Public/Developer/SystemLib/Sources/Wm.c
+++ b/Public/Developer/SystemLib/Sources/Wm.c
@@ -82,7 +82,7 @@ CA_EXTERN_C VoidType WmBlur(WindowPort* wndPort) {
if (wndPort != NullPtr) {
WmGFXRef refGfx = wndPort->windowGfx;
- UInt32Type lookupTbl[4] = {0.21336, 0.41336, 0.61336, 0.81336};
+ FloatType lookupTbl[4] = {0.21336, 0.41336, 0.61336, 0.81336};
for (SizeType width = 0; width < refGfx->DataFrameWidth; ++width) {
for (SizeType height = 0; height < refGfx->DataFrameHeight; ++height) {
@@ -100,4 +100,4 @@ CA_EXTERN_C VoidType WmInvalidateGfx(WindowPort* wndPort) {
if (wndPort) {
wndPort->windowInvalidate = Yes;
}
-} \ No newline at end of file
+}