From: Digital X. <dig...@us...> - 2007-02-20 10:19:54
|
Update of /cvsroot/openrpg/openrpg1 In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv28804 Modified Files: start.py Log Message: Fixed a bug for OSX and starting up Fixed a miss spelling of Label (And added the ability to initate a label edit in the game tree by pressing F2) Fixed a bug that was causing images to not load on older clients The new map now has the abilit to multi select Objects Index: start.py =================================================================== RCS file: /cvsroot/openrpg/openrpg1/start.py,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** start.py 17 Feb 2007 10:06:00 -0000 1.13 --- start.py 20 Feb 2007 10:19:53 -0000 1.14 *************** *** 1,3 **** ! #!/usr/bin/python python import getopt import pyver --- 1,3 ---- ! #!/usr/bin/env python import getopt import pyver *************** *** 13,20 **** app.MainLoop() ! ex = sys.executable.replace("Program Files", "Progra~1") ! os.execl(ex, ex, 'start.py', '-n') ! else: ! import orpg.main ! app = orpg.main.orpgApp(0) ! app.MainLoop() \ No newline at end of file --- 13,20 ---- app.MainLoop() ! if 'wxGTK' in wx.PlatformInfo: ! os.execl(sys.executable, sys.executable, 'start.py', '-n') ! ! import orpg.main ! app = orpg.main.orpgApp(0) ! app.MainLoop() \ No newline at end of file |