attempt to load the in-tree gfceux scripts before loading the installed scripts (to ease development out of the tree)

This commit is contained in:
punkrockguy318 2009-04-29 04:41:00 +00:00
parent 9e3b6195d6
commit dd21307e7a
1 changed files with 2 additions and 2 deletions

4
gfceux
View File

@ -6,9 +6,9 @@
#
# <http://fceux.com>
try:
from gfceux import main
except:
from src import main
except:
from gfceux import main
app = main.GfceuxApp()