Overview
Comment: | Change some variables from 8-bits to 16-bits for better compatibility with Hero Mesh |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
418cb4cce0e2c764dd285e0fa87a3843 |
User & Date: | user on 2020-12-21 23:44:05 |
Other Links: | manifest | tags |
Context
2020-12-22
| ||
04:56 | Change class.doc to say that Image, Shape, and Shovable are now 16-bits check-in: 8d33f93627 user: user tags: trunk | |
2020-12-21
| ||
23:44 | Change some variables from 8-bits to 16-bits for better compatibility with Hero Mesh check-in: 418cb4cce0 user: user tags: trunk | |
22:26 | Add ':s' for memory allocation stats and change binding.doc to make some improvements check-in: 0c771447b3 user: user tags: trunk | |
Changes
Modified exec.c from [fd399e3ec1] to [42efb1ced4].
︙ | |||
184 185 186 187 188 189 190 | 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | - + | static inline void clear_inventory(void) { free(inventory); inventory=0; ninventory=0; } |
︙ |
Modified heromesh.h from [c347f8ffc1] to [ec8cb61a20].
︙ | |||
201 202 203 204 205 206 207 | 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | - + - + | AnimationStep step[0]; } Animation; typedef struct { Sint32 height,weight,climb,density,volume,strength,arrivals,departures,temperature,inertia; Uint32 arrived,departed,arrived2,departed2,generation; Uint32 up,down,prev,next; // links to other objects |
︙ |