Differences From Artifact [b26f53b2f9]:
- File mbtofhm.c — part of check-in [e7e0e8408f] at 2021-02-25 07:04:12 on branch trunk — Correct the array dimensions and complete the implementation of arrays. Some levels of FALLING still don't work, but at least some of these (such as level 9) are not due to arrays. (user: user, size: 35566) [annotate] [blame] [check-ins using]
To Artifact [640a4cf4de]:
- File mbtofhm.c — part of check-in [156b0a7c35] at 2022-07-06 05:20:21 on branch trunk — Several changes needed to allow coordinate input to be implemented in future (including the CLICK message and InputXY keyword). Also fixes a bug that was caused by changing MoveItem from Uint8 to Uint16. (user: user, size: 35593) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | + | #if 0 gcc -s -O2 -o ./mbtofhm -Wno-unused-result mbtofhm.c exit #endif // This program is part of Free Hero Mesh and is public domain. #include <stdio.h> #include <stdlib.h> #include <string.h> #define HEROMESH_MAIN #define HEROMESH_CONV_MAIN #include "names.h" #define fatal(...) do{ fprintf(stderr,__VA_ARGS__); exit(1); }while(0) // Pictures static unsigned char*pict; static unsigned short*picalloc; |
︙ |