fceux/gfceux

22 lines
358 B
Plaintext
Raw Normal View History

2009-09-07 12:48:49 +00:00
#!/usr/bin/env python
#
# GTK2 GUI for FCE UltraX
#
# Lukas Sabota <ltsmooth42 _at_ gmail _dot_ com>
#
# <http://fceux.com>
2009-09-07 12:58:58 +00:00
import platform
import sys
2009-09-07 12:48:49 +00:00
if platform.python_version() < '2.5.0':
print "Python version too old, use one greater than 2.5.0";
2009-09-07 12:58:58 +00:00
sys.exit();
2009-09-07 12:48:49 +00:00
try:
from src import main
except:
from gfceux import main
app = main.GfceuxApp()