Fixed an off by 1 UI inconsistency.

This commit is contained in:
PapaMilky 2026-04-09 21:34:30 +10:00
commit af14fd258b
Signed by untrusted user who does not match committer: PapaMilky
GPG key ID: 375758D2F2FFF87A

View file

@ -340,7 +340,7 @@ void render_action_log(const char log[5][128], int count, int head) {
DrawText("MESSAGE LOG", log_x + 8, log_y + 6, 10, (Color){180, 160, 130, 255});
// Separator line under title
DrawLine(log_x + 4, log_y + 22, log_x + log_width - 5, log_y + 22, log_border_dark);
DrawLine(log_x + 4, log_y + 22, log_x + log_width - 4, log_y + 22, log_border_dark);
// Log entries
int text_x = log_x + 8;