Skip to content

Commit

Permalink
dissable Makefile workflow and forat code
Browse files Browse the repository at this point in the history
  • Loading branch information
jmattaa committed Nov 24, 2024
1 parent 5931970 commit c20da41
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: Makefile CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions src/colors.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ void laser_colors_set(const char *key, const char *value)
}

// macro stuff be 🔥
#define _X(name, vaule) \
LASER_COLORS[LASER_COLOR_##name].key = strdup(#name); \
#define _X(name, vaule) \
LASER_COLORS[LASER_COLOR_##name].key = strdup(#name); \
LASER_COLORS[LASER_COLOR_##name].value = strdup(vaule);

void laser_colors_init(void)
Expand Down
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ int main(int argc, char **argv)

if (script_to_load != default_script)
lua_load_script(script_to_load);
lua_load_script(default_script); // load the default script cuz user may
lua_load_script(default_script); // load the default script cuz user may
// not be defining everything

laser_colors_init();
Expand Down

0 comments on commit c20da41

Please sign in to comment.