summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2025-04-16 20:32:14 +0200
committerMitya Selivanov <automainint@guattari.tech>2025-04-16 20:32:14 +0200
commit7ef9023e88a174998b4542a52a54d31f8a04af20 (patch)
tree72cafabc262ddcc9b003b6522c002e5ed2b22e52
parent84c1df59c4857eeaa0d209ab08f983fac20d38db (diff)
downloadreduced_system_layer-7ef9023e88a174998b4542a52a54d31f8a04af20.zip
Fix condition
-rwxr-xr-xreduced_system_layer.c2
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.");
}