Skip to content

Commit

Permalink
generator: let's just print all the variables lol
Browse files Browse the repository at this point in the history
  • Loading branch information
lifehackerhansol committed May 19, 2022
1 parent 31cc477 commit d3a8af4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion generator/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,6 @@ def getrompath(self, path) -> str:
path = path.replace(root, "")
if os.name == 'nt':
path = path.replace('\\', '/')
self.message(f"Using ROM path: {path}")
return path

def makeromfs(self):
Expand Down Expand Up @@ -320,6 +319,8 @@ def start(self):
self.path = self.getrompath(os.path.abspath(self.infile))
if not self.output:
self.output = f"{os.path.basename(self.infile)}.cia"
self.message(f"Using ROM path: {self.path}")
self.message(f"Output file: {self.output}")
self.message("Getting gamecode...")
self.getgamecode()
self.message("Extracting and resizing icon...")
Expand Down

0 comments on commit d3a8af4

Please sign in to comment.