fceux/gfceux

22 lines
358 B
Python
Executable File

#!/usr/bin/env python
#
# 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()