summaryrefslogtreecommitdiffhomepage
path: root/dev/ZKA
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-08-24 18:08:02 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-08-24 18:08:02 +0200
commit753947b7874c7b0589d823a44a69de8530948c30 (patch)
tree4de8f367ae935f67dda897c42d64478bd0857c14 /dev/ZKA
parent529945c987c5107d84b627a56627df6dd40dd3da (diff)
[IMP] Remove useless button, gotta use it later.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKA')
-rw-r--r--dev/ZKA/Sources/DLLMain.cxx12
1 files changed, 2 insertions, 10 deletions
diff --git a/dev/ZKA/Sources/DLLMain.cxx b/dev/ZKA/Sources/DLLMain.cxx
index b3bcd48c..77e338b3 100644
--- a/dev/ZKA/Sources/DLLMain.cxx
+++ b/dev/ZKA/Sources/DLLMain.cxx
@@ -205,19 +205,11 @@ EXTERN_C Kernel::Void ke_dll_entrypoint(Kernel::Void)
root_zka_wnd->w_needs_repaint = Yes;
+ CG::CGDrawWindowList(&root_zka_wnd, 1);
+
/// Now run kernel loop, until no process are running.
Kernel::Detail::FilesystemInstaller(); // automatic filesystem creation.
- auto root_install_wnd = CG::CGCreateWindow(CG::cWndFlagButton, "Install ZKA.", "Button", 0, 0, 128, 32);
-
- root_install_wnd->w_x = 30;
- root_install_wnd->w_y = 60;
-
- root_install_wnd->w_needs_repaint = Yes;
-
- CG::CGDrawWindowList(&root_zka_wnd, 1);
- CG::CGDrawWindowList(&root_install_wnd, 1);
-
/// @note BThread doesn't parse the symbols so doesn't nullify them, .bss is though.
Kernel::cProcessScheduler = nullptr;