Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove unnecessary items from arrays
At least I don't think these are needed? |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
e4e256f8b08ba1fa43be3755ea2ee479 |
User & Date: | atomicules@lavabit.com 2013-07-10 13:12:28 |
Context
2013-07-10
| ||
13:13 |
Identation changes only
Was meant to be like this in the first place check-in: b5ca845268 user: atomicules@lavabit.com tags: origin/master, trunk | |
13:12 |
Remove unnecessary items from arrays
At least I don't think these are needed? check-in: e4e256f8b0 user: atomicules@lavabit.com tags: origin/master, trunk | |
12:29 |
Fix pointer types
Or whatever the hell they are called. Inadvertently set these wrong when | |
Changes
Changes to exposurses.c.
︙ | ︙ | |||
9 10 11 12 13 14 15 | char *iso[] = { "50", "100", "200", "400", "800", "1600", | | < | < | < | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | char *iso[] = { "50", "100", "200", "400", "800", "1600", "3200" }; char *shutter[] = { "1/1000", "1/500", "1/250", "1/125", "1/60", "1/30", "1/15", "1/8", "1/4", "1/2", "1" }; char *aperture[] = { "f/1.4", "f/2", "f/2.8", "f/4", "f/5.6", "f/8", "f/11", "f/16" }; void print_in_middle(WINDOW *win, int starty, int startx, int width, char *string, chtype color); int main(){ ITEM **iso_items; ITEM **shutter_items; ITEM **aperture_items; |
︙ | ︙ |