Changeset - r5832:c705f5078c3f
[Not reviewed]
master
0 2 0
Darkvater - 17 years ago 2007-01-24 21:23:35
darkvater@openttd.org
(svn r8398) -Cleanup: Remove WATCOM crud from strgen and map.h include from macros.h as it is no longer needed.
2 files changed with 0 insertions and 10 deletions:
0 comments (0 inline, 0 general)
src/macros.h
Show inline comments
 
@@ -3,8 +3,6 @@
 
#ifndef MACROS_H
 
#define MACROS_H
 

	
 
#include "map.h"
 

	
 
/// Fetch n bits starting at bit s from x
 
#define GB(x, s, n) (((x) >> (s)) & ((1U << (n)) - 1))
 
/// Set n bits starting at bit s in x to d
src/strgen/strgen.cpp
Show inline comments
 
@@ -27,14 +27,6 @@
 
#define stderr stdout
 
#endif /* __MORPHOS__ */
 

	
 
#ifdef __WATCOMC__
 
	uint _map_log_x;     // an unpleasant hack required because Watcom is insisting on
 
	uint _map_size_x;    // these variables being valid references in map.h
 
	uint _map_size_y;
 
	uint _map_tile_mask;
 
	uint _map_size;
 
#endif /* __WATCOMC__ */
 

	
 
/* Compiles a list of strings into a compiled string list */
 

	
 
typedef void (*ParseCmdProc)(char *buf, int value);
0 comments (0 inline, 0 general)