mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 09:51:41 +00:00
Documentation tweaks.
This commit is contained in:
parent
bffc1dd239
commit
4c11304c8d
2 changed files with 11 additions and 9 deletions
|
@ -53,21 +53,23 @@ struct srcline_s {
|
|||
*/
|
||||
typedef struct pr_info_s {
|
||||
struct type_s *types;
|
||||
|
||||
struct strpool_s *strings;
|
||||
|
||||
struct codespace_s *code;
|
||||
|
||||
struct function_s *func_head;
|
||||
struct function_s **func_tail;
|
||||
dfunction_t *functions;
|
||||
int num_functions;
|
||||
|
||||
struct strpool_s *strings; ///< progs string data
|
||||
struct codespace_s *code; ///< progs code data
|
||||
struct defspace_s *data; ///< combined near and far data
|
||||
struct defspace_s *near_data;
|
||||
struct defspace_s *far_data;
|
||||
struct defspace_s *entity_data;
|
||||
struct defspace_s *type_data;
|
||||
struct defspace_s *near_data; ///< data directly addressable by
|
||||
///< statments (address < 64k)
|
||||
struct defspace_s *far_data; ///< data that might not be directly
|
||||
///< addressabe by statements (address
|
||||
///< possibly > 64k)
|
||||
struct defspace_s *entity_data; ///< entity field address space. no
|
||||
///< date is stored in the progs file
|
||||
struct defspace_s *type_data; ///< encoded type information.
|
||||
|
||||
struct symtab_s *symtab;
|
||||
|
||||
|
|
|
@ -274,7 +274,7 @@ make_string (char *token, char **end)
|
|||
break;
|
||||
case '>':
|
||||
if (options.qccx_escapes)
|
||||
c = 31; // broun right end
|
||||
c = 31; // brown right end
|
||||
else
|
||||
mask = 0x00;
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue