Differences From Artifact [1653acd7e0]:
- File class.c — part of check-in [6e7ed8025b] at 2022-07-16 01:20:13 on branch trunk — Implement the global (Density) block. (user: user, size: 94564) [annotate] [blame] [check-ins using]
To Artifact [b256a9488a]:
- File class.c — part of check-in [3bac201324] at 2022-07-18 06:38:56 on branch trunk — Implement (partially) comconfig; also add back into game.c the ability to record solution timestamps (that was removed by mistake in the past), and improve documentation about compiling (in README file). (user: user, size: 94741) [annotate] [blame] [check-ins using]
︙ | |||
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | + + + + + + + + + | DisplayColumn*ll_disp; Uint8 ll_ndisp; DataColumn*ll_data; Uint8 ll_ndata; Uint8 ll_naggregate; Uint16*ll_code; #ifdef CONFIG_GLOBAL_HASH_SIZE #define HASH_SIZE CONFIG_GLOBAL_HASH_SIZE #else #define HASH_SIZE 8888 #endif #ifdef CONFIG_LOCAL_HASH_SIZE #define LOCAL_HASH_SIZE CONFIG_LOCAL_HASH_SIZE #else #define LOCAL_HASH_SIZE 5555 #endif typedef struct { Uint16 id; char*txt; } Hash; /* Global hash: |
︙ |