diff options
| author | Vladimir Menshakov | 2011-06-10 02:18:21 +0400 | 
|---|---|---|
| committer | Alyssa Milburn | 2011-06-15 17:33:51 +0200 | 
| commit | 23736a02400c0649e50c07af87712d413cef6b83 (patch) | |
| tree | e10db64132f57b75404a6e3bfc1bdd746ad8eb60 /devtools | |
| parent | 33bb7c3f72dcc6d3d6c1f23799976181ac1969da (diff) | |
| download | scummvm-rg350-23736a02400c0649e50c07af87712d413cef6b83.tar.gz scummvm-rg350-23736a02400c0649e50c07af87712d413cef6b83.tar.bz2 scummvm-rg350-23736a02400c0649e50c07af87712d413cef6b83.zip  | |
DREAMWEB: output equ values in log
Diffstat (limited to 'devtools')
| -rw-r--r-- | devtools/tasmrecover/tasm/cpp.py | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/devtools/tasmrecover/tasm/cpp.py b/devtools/tasmrecover/tasm/cpp.py index 0c1a4b4cec..53b847a23a 100644 --- a/devtools/tasmrecover/tasm/cpp.py +++ b/devtools/tasmrecover/tasm/cpp.py @@ -53,6 +53,7 @@ namespace %s {  		g = self.context.get_global(name)  		if isinstance(g, op.const):  			value = self.expand_equ(g.value) +			print "equ: %s -> %s" %(name, value)  		elif isinstance(g, proc.proc):  			if self.indirection != -1:  				raise Exception("invalid proc label usage")  | 
