bypass ocempgui at startup
This commit is contained in:
parent
4b2c5245e1
commit
49065c2d3f
2 changed files with 5 additions and 4 deletions
|
@ -15,7 +15,7 @@ class PercentArray(object):
|
|||
self.array = {}
|
||||
|
||||
def __setitem__(self, key, value):
|
||||
if not self.array.has_key(key):
|
||||
if not key in self.array:
|
||||
self.order += [key]
|
||||
self.array[key] = value
|
||||
|
||||
|
|
7
vssg.py
7
vssg.py
|
@ -9,8 +9,8 @@ import random
|
|||
import starmap
|
||||
import starmap_gen
|
||||
import gametimer
|
||||
from ocempgui.widgets import *
|
||||
from ocempgui.widgets.Constants import *
|
||||
#from ocempgui.widgets import *
|
||||
#from ocempgui.widgets.Constants import *
|
||||
import video
|
||||
|
||||
|
||||
|
@ -187,7 +187,8 @@ def screen_options():
|
|||
return re
|
||||
|
||||
|
||||
guiscreen = screen_mainmenu()
|
||||
guiscreen = None
|
||||
map = starmap_gen.starmap_generate()
|
||||
gametimer.start_loop()
|
||||
|
||||
while True:
|
||||
|
|
Loading…
Add table
Reference in a new issue