logic fix

This commit is contained in:
Fierelier 2019-08-24 21:34:58 +02:00
parent 44062f2aa9
commit f74ea07d63
1 changed files with 3 additions and 2 deletions

View File

@ -123,8 +123,9 @@ def main():
print("\n(6)4 or (3)2 bit?")
choice = input().lower()
syswow = False
if (choice == "6"): syswow = True
if (choice != "3"): continue
if (choice == "6"):
syswow = True
elif (choice != "3"): continue
os.makedirs(prefixFolder)
if (syswow == False): os.environ["WINEARCH"] = "win32"
launchPrefix(prefix,["winecfg"])