[Scummvm-cvs-logs] SF.net SVN: scummvm: [28092] tools/branches/gsoc2007-decompiler

brixxie at users.sourceforge.net brixxie at users.sourceforge.net
Sun Jul 15 05:56:04 CEST 2007


Revision: 28092
          http://scummvm.svn.sourceforge.net/scummvm/?rev=28092&view=rev
Author:   brixxie
Date:     2007-07-14 20:56:04 -0700 (Sat, 14 Jul 2007)

Log Message:
-----------
Removed printing of local script numbers, minor fix in BLOCKS->CFG

Modified Paths:
--------------
    tools/branches/gsoc2007-decompiler/antipasto.scm
    tools/branches/gsoc2007-decompiler/cfgg.scm

Property Changed:
----------------
    tools/branches/gsoc2007-decompiler/


Property changes on: tools/branches/gsoc2007-decompiler
___________________________________________________________________
Name: svk:merge
   - 489ca303-0d3d-4dc1-a57d-017c7912a06a:/local/gsoc2007-decompiler:53
   + 489ca303-0d3d-4dc1-a57d-017c7912a06a:/local/gsoc2007-decompiler:55

Modified: tools/branches/gsoc2007-decompiler/antipasto.scm
===================================================================
--- tools/branches/gsoc2007-decompiler/antipasto.scm	2007-07-15 03:43:45 UTC (rev 28091)
+++ tools/branches/gsoc2007-decompiler/antipasto.scm	2007-07-15 03:56:04 UTC (rev 28092)
@@ -2,7 +2,7 @@
 
 ;;; Antipasto - Scumm Script Disassembler Prototype (version 5 scripts)
 ;;; Copyright (C) 2007 Andreas Scholta
-;;; Time-stamp: <2007-07-15 05:30:44 brx>
+;;; Time-stamp: <2007-07-15 05:50:37 brx>
 
 ;;; This program is free software; you can redistribute it and/or
 ;;; modify it under the terms of the GNU General Public License
@@ -780,8 +780,8 @@
     (error (string-append current-script-file
                           " is too small to be a local script")))
   (set-file-position! current-script-port 8)
-  (print (string-append "Local Script #"
-                        (number->string (read-u8 current-script-port)))))
+  (string-append "Local Script #"
+                 (number->string (read-u8 current-script-port))))
 
 (define (parse-header)
   (when (< (file-size current-script-file) 8)

Modified: tools/branches/gsoc2007-decompiler/cfgg.scm
===================================================================
--- tools/branches/gsoc2007-decompiler/cfgg.scm	2007-07-15 03:43:45 UTC (rev 28091)
+++ tools/branches/gsoc2007-decompiler/cfgg.scm	2007-07-15 03:56:04 UTC (rev 28092)
@@ -2,7 +2,7 @@
 
 ;;; Antipasto - Scumm Script Disassembler Prototype
 ;;; Copyright (C) 2007 Andreas Scholta
-;;; Time-stamp: <2007-07-15 05:25:28 brx>
+;;; Time-stamp: <2007-07-15 05:51:48 brx>
 
 ;;; This program is free software; you can redistribute it and/or
 ;;; modify it under the terms of the GNU General Public License
@@ -104,8 +104,7 @@
                                (list (target-block-index jump-addr)))
                               ('fall
                                (list (add1 i)))
-                              (else
-                               #f))))
+                              (else #f))))
                   (when outs
                     (for-each (lambda (out)
                                 (unless ((g 'has-edge) i out)


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list