aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/scparse_priv.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2019-04-06 23:51:03 +0200
committerThomas White <taw@bitwiz.me.uk>2019-04-06 23:51:03 +0200
commitf06c80cda67ad053d0561e19fa95881f545a0e6d (patch)
tree7f47c81841f4a362672d2f076a1383abf0b720c1 /libstorycode/scparse_priv.h
parentb82f2beadfbd4deb1bd89566a8115c26e82cd0f9 (diff)
If a colour is read as a hex code, save it that way too
Diffstat (limited to 'libstorycode/scparse_priv.h')
-rw-r--r--libstorycode/scparse_priv.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libstorycode/scparse_priv.h b/libstorycode/scparse_priv.h
index c327b1a..22be698 100644
--- a/libstorycode/scparse_priv.h
+++ b/libstorycode/scparse_priv.h
@@ -56,10 +56,10 @@ struct scpctx
enum alignment alignment;
struct length padding[4];
struct length paraspace[4];
- double fgcol[4];
+ struct colour fgcol;
enum gradient bggrad;
- double bgcol[4];
- double bgcol2[4];
+ struct colour bgcol;
+ struct colour bgcol2;
};
#endif /* SCPARSE_PRIV_H */