macros.inc: rename area to RECT
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 27s
Build system / Build (pull_request) Successful in 5m36s

This commit is contained in:
2025-03-18 22:25:59 +02:00
committed by Burer
parent 94134e0c24
commit d4cd8cb00e
2 changed files with 7 additions and 7 deletions

View File

@@ -443,7 +443,7 @@ macro define@lstruct name,[field]
common \} } common \} }
;usecase ;usecase
define@lstruct area,X,Y,W,H define@lstruct RECT,X,Y,W,H
struct BOX struct BOX
left dd ? left dd ?

View File

@@ -444,13 +444,13 @@ pick_col_cell:
;--------------------------------------------------------------------- ;---------------------------------------------------------------------
WIN area 100,100,221,112 WIN RECT 100,100,221,112
BUT_PIP area 8, 12, 24, 24 BUT_PIP RECT 8, 12, 24, 24
BUT_COL area 40, 12, 68, 24 BUT_COL RECT 40, 12, 68, 24
BUT_HEX area 8, 44,100, 24 BUT_HEX RECT 8, 44,100, 24
BUT_RGB area 8, 76,100, 24 BUT_RGB RECT 8, 76,100, 24
BUT_REC area 116, 12, 88, 88 BUT_REC RECT 116, 12, 88, 88
;--------------------------------------------------------------------- ;---------------------------------------------------------------------