minor bugfix for gfceux (which is obsolete anyway)

This commit is contained in:
punkrockguy318 2010-11-01 16:00:38 +00:00
parent dc5091e79b
commit 043cada9b9
1 changed files with 21 additions and 0 deletions

21
gfceux/gfceux Executable file
View File

@ -0,0 +1,21 @@
#!/usr/bin/env python2
#
# GTK2 GUI for FCE UltraX
#
# Lukas Sabota <ltsmooth42 _at_ gmail _dot_ com>
#
# <http://fceux.com>
import platform
import sys
if platform.python_version() < '2.5.0':
print "Python version too old, use one greater than 2.5.0"
sys.exit()
try:
from src import main
except:
from gfceux import main
app = main.GfceuxApp()