summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/scenes/place_detail.c2
-rw-r--r--src/world.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/scenes/place_detail.c b/src/scenes/place_detail.c
index dc366ba..0cf8de8 100644
--- a/src/scenes/place_detail.c
+++ b/src/scenes/place_detail.c
@@ -141,7 +141,7 @@ static scheduled_job create_empty_job_schedule(job_offer* job)
return new_job;
}
-#define scroll_speed 15
+#define scroll_speed 25
#define HANDLE_TAB_SCROLL\
bool hovering_tab = (_global_mouse.y >= orig_y && _global_mouse.y <= orig_y + h \
&& _global_mouse.x >= x && _global_mouse.x <= x + w);\
diff --git a/src/world.c b/src/world.c
index e80f195..3c3dbc8 100644
--- a/src/world.c
+++ b/src/world.c
@@ -130,9 +130,9 @@ static void world_create_connections(world* world)
}
}
- if (source->connections.length == 0 && closest_loc != 0) {
- array_push(&source->connections, &closest_loc);
- }
+ //if (source->connections.length == 0 && closest_loc != 0) {
+ // array_push(&source->connections, &closest_loc);
+ //}
}
}