summaryrefslogtreecommitdiff
path: root/apps/plugins/puzzles/puzzles.make
diff options
context:
space:
mode:
authorFranklin Wei <git@fwei.tk>2017-01-09 13:21:27 -0500
committerFranklin Wei <git@fwei.tk>2017-01-15 14:29:24 -0500
commitd221ca6e5b9953b678f9ee6d6d8d352cf3c01f56 (patch)
treede0dd70c5d27f91e9dfbd6548f1f331f9dd800b0 /apps/plugins/puzzles/puzzles.make
parent42e54c508f2c57cbd85a5a76bf17a621de7c1642 (diff)
downloadrockbox-d221ca6e5b9953b678f9ee6d6d8d352cf3c01f56.tar.gz
rockbox-d221ca6e5b9953b678f9ee6d6d8d352cf3c01f56.zip
puzzles: antialiased line drawing via Wu's algorithm and optional "shortcuts" for undo/redo
- line drawing should eventually be moved to xlcd, but for now it's very unportable code - also fixes a minor issue with the configuration screens Change-Id: I897f01b7210cbbec32665c2bc67920c965ea0bec
Diffstat (limited to 'apps/plugins/puzzles/puzzles.make')
-rw-r--r--apps/plugins/puzzles/puzzles.make4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/puzzles/puzzles.make b/apps/plugins/puzzles/puzzles.make
index 4052423fb9..f49b663197 100644
--- a/apps/plugins/puzzles/puzzles.make
+++ b/apps/plugins/puzzles/puzzles.make
@@ -43,8 +43,8 @@ ROCKS += $(PUZZLES_ROCKS)
43endif 43endif
44 44
45# Hack to suppress all warnings: 45# Hack to suppress all warnings:
46PUZZLESFLAGS = $(filter-out -O%,$(PLUGINFLAGS)) -Os \ 46PUZZLESFLAGS = $(filter-out -O%,$(PLUGINFLAGS)) -O3 \
47 -Wno-unused-parameter -Wno-sign-compare -Wno-strict-aliasing -w \ 47 -Wno-unused-parameter -Wno-sign-compare -Wno-strict-aliasing -w \
48 -DFOR_REAL -I$(PUZZLES_SRCDIR) 48 -DFOR_REAL -I$(PUZZLES_SRCDIR)
49ifdef PUZZLES_COMBINED 49ifdef PUZZLES_COMBINED
50PUZZLESFLAGS += -DCOMBINED 50PUZZLESFLAGS += -DCOMBINED