blob: 3eb5983a4e243d71843706ae64dad245c0332ff2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# -*- coding: utf-8 -*-
import os
# by default we assume the user has vba in pokecrystal/extras
project_path = os.path.abspath(os.path.join(os.path.dirname( __file__ ), '..'))
# save states are in pokecrystal/save-states/
save_state_path = os.path.join(project_path, "save-states")
# where is your rom?
rom_path = os.path.join(project_path, "baserom.gbc")
|