10 Commits

Author SHA1 Message Date
ef9c6ada19 [Apps/Charsets] Fixed wrong charpage button redraw and added mising asm header options
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 36s
Build system / Build (pull_request) Successful in 13m42s
2025-04-05 12:50:59 +02:00
6f886624d6 [Apps/Charsets] Fixed broken code 2025-04-05 12:50:59 +02:00
346ce7a8d0 [Apps/Charsets] Updated to 0.4.2 2025-04-05 12:50:59 +02:00
3efbc8a31b [Apps/Charsets] To previous 2025-04-05 12:50:59 +02:00
a587b72091 [Apps/Charsets] Fixed license once again 2025-04-05 12:50:59 +02:00
5cde592343 [Apps/Charsets] Fixes license 2025-04-05 12:50:59 +02:00
ae66d777f0 [Apps/Charsets] Fixed license text and stack size 2025-04-05 12:50:59 +02:00
42463311c1 [Apps/Charsets] Fixed Tupfile.lua 2025-04-05 12:50:59 +02:00
fc329a8f07 [Apps/Charsets] Updated to 0.4.1 2025-04-05 12:50:59 +02:00
fcb9f49785 flood-it: Fixed buttons position (#193)
Reviewed-on: #193
Reviewed-by: Max Logaev <maxlogaev@proton.me>
Co-authored-by: leency <lipatov.kiril@gmail.com>
Co-committed-by: leency <lipatov.kiril@gmail.com>
2025-04-03 12:32:18 +02:00
2 changed files with 6 additions and 2 deletions

View File

@@ -225,8 +225,10 @@ void draw_window()
// Main buttons to fill the board
#define FILL_BUTTON_SIZE BUTTON_SIZE+8
for (i=0;i<6;i++)
DefineButton(i%3*FILL_BUTTON_SIZE+17,i/3*FILL_BUTTON_SIZE+15,FILL_BUTTON_SIZE,FILL_BUTTON_SIZE, i+100,FIELD_COLORS[i]);
for (i=0;i<6;i++) {
DefineButton(i%3*FILL_BUTTON_SIZE+17,calc(i/3)*FILL_BUTTON_SIZE+15,
FILL_BUTTON_SIZE,FILL_BUTTON_SIZE, i+100,FIELD_COLORS[i]);
}
// Menu buttons
for (i=0;i<3;i++)

View File

@@ -27,6 +27,8 @@ dword I_Path = 0;
#define true 1
#define false 0
inline fastcall dword calc(EAX) { return EAX; }
//-------------------------------------------------------------------------