aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/stylesheet.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2019-10-10 17:38:23 +0200
committerThomas White <taw@bitwiz.me.uk>2019-10-10 17:38:23 +0200
commit23c8103b45433c0bef316c84acbc74db4dcb5621 (patch)
tree6eaa453f85a00945546ddb9a62a0d25d81ac4c0d /libstorycode/stylesheet.c
parent428a3329d1b86c9daa15fa72b2fbbd54859579ca (diff)
Make symbol names unique across all files
Enables Meson unity builds, helps ctags work, and reduces space for bugs
Diffstat (limited to 'libstorycode/stylesheet.c')
-rw-r--r--libstorycode/stylesheet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstorycode/stylesheet.c b/libstorycode/stylesheet.c
index be4db9b..d649d48 100644
--- a/libstorycode/stylesheet.c
+++ b/libstorycode/stylesheet.c
@@ -71,7 +71,7 @@ struct _stylesheet
};
-static void copy_col(struct colour *to, struct colour from)
+void copy_col(struct colour *to, struct colour from)
{
int i;
for ( i=0; i<4; i++ ) to->rgba[i] = from.rgba[i];