Changed filename to be a var instead of a function

This commit is contained in:
Timothy GFO 2023-08-30 23:36:26 -04:00
parent 84447ac3cb
commit 660fe96641

View file

@ -7,7 +7,7 @@ It could also work by calling a function, say place_tile(tilename, x, y) and the
import configparser, os import configparser, os
config = configparser.ConfigParser() config = configparser.ConfigParser()
def filename(filename): filename = "mmlv.mmlv"
config.read(filename) config.read(filename)
def conv_coordinates(x16, y16): def conv_coordinates(x16, y16):