Index: tools/lua/gradients.py |
diff --git a/tools/lua/gradients.py b/tools/lua/gradients.py |
index a2cf785cbb91e9f4ca85db4dfd27bb8bb6690ed2..1b7aa1ef63d1934be8d5434049dd6827c5b9f378 100755 |
--- a/tools/lua/gradients.py |
+++ b/tools/lua/gradients.py |
@@ -12,12 +12,12 @@ def create_database(inpath, outpath): |
with sqlite3.connect(outpath) as conn: |
c = conn.cursor(); |
c.execute('''CREATE TABLE IF NOT EXISTS gradients ( |
- ColorCount INTEGER, |
- GradientType TEXT, |
- TileMode TEXT, |
- EvenlySpaced INTEGER, |
- HardStops INTEGER, |
- Positions TEXT |
+ ColorCount INTEGER, |
+ GradientType TEXT, |
+ TileMode TEXT, |
+ EvenlySpaced INTEGER, |
+ HardStopCount INTEGER, |
+ Positions TEXT |
)'''); |
c.execute("DELETE FROM gradients"); |