Skip to content

Commit

Permalink
Update default output folder
Browse files Browse the repository at this point in the history
  • Loading branch information
STBrian committed Jan 9, 2024
1 parent 3181406 commit 0bc2e07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mc3ds-tm-gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,12 @@ def __init__(self):
self.running = "exe"
self.app_path = sys._MEIPASS
self.runningDir = os.path.dirname(sys.executable)
self.outputFolder = os.path.dirname(sys.executable)
self.outputFolder = os.path.join(self.runningDir, "MC3DS")
elif __file__:
self.running = "src"
self.app_path = os.path.dirname(__file__)
self.runningDir = os.path.dirname(__file__)
self.outputFolder = "MC3DS"
self.outputFolder = os.path.join(self.runningDir, "MC3DS")

self.title("MC3DS Texture Maker")
os_name = os.name
Expand Down

0 comments on commit 0bc2e07

Please sign in to comment.