diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2025-04-16 20:32:14 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2025-04-16 20:32:14 +0200 |
commit | 7ef9023e88a174998b4542a52a54d31f8a04af20 (patch) | |
tree | 72cafabc262ddcc9b003b6522c002e5ed2b22e52 | |
parent | 84c1df59c4857eeaa0d209ab08f983fac20d38db (diff) | |
download | reduced_system_layer-7ef9023e88a174998b4542a52a54d31f8a04af20.zip |
Fix condition
-rwxr-xr-x | reduced_system_layer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reduced_system_layer.c b/reduced_system_layer.c index a81e02d..ace2963 100755 --- a/reduced_system_layer.c +++ b/reduced_system_layer.c @@ -4615,7 +4615,7 @@ __attribute__((export_name("js_drop_data"))) void *js_drop_data(void) { // // ================================================================ -#if !defined(__linux__) || !ENABLE_X11 || !ENABLE_WAYLAND +#if !defined(__linux__) || (!ENABLE_X11 && !ENABLE_WAYLAND) void init_main_window(void) { LOG_ERROR("Not implemented."); } |