Skip to content

Instantly share code, notes, and snippets.

View TheNathannator's full-sized avatar
🥁
probably drumming

Nathan TheNathannator

🥁
probably drumming
View GitHub Profile
@TheNathannator
TheNathannator / WiiMap2GCMap.py
Last active February 18, 2024 02:49 — forked from NWPlayer123/WiiMap2GCMap.py
Converts Wii symbol maps (e.g. Kirby's Return to Dreamland) to GameCube symbol maps
import os
import sys
def sanitize(line):
line = line.strip()
line = line.replace("\t", " ")
for i in range(5):
line = line.replace(" ", " ")
return line.split(" ")