1
0
Fork 0
forked from len0rd/rockbox

puzzles: fix star drawing in Signpost

- change point ordering to make concave polygon rendering work
- also enables an "Easter egg" of sorts

Change-Id: I3b4044a374dce1cff889d5f3744de9e634978591
This commit is contained in:
Franklin Wei 2017-07-13 16:56:17 -04:00
parent e7a35ba383
commit 3a70222a73
2 changed files with 5 additions and 2 deletions

View file

@ -12,6 +12,8 @@ int sprintf_wrapper(char *str, const char *fmt, ...)
char *getenv_wrapper(const char *c)
{
if(!strcmp(c, "SIGNPOST_GEARS"))
return "y";
return NULL;
}