Update directories
This commit is contained in:
parent
0198cf7185
commit
d78c8f9817
|
@ -158,3 +158,11 @@ cython_debug/
|
||||||
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
||||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||||
#.idea/
|
#.idea/
|
||||||
|
|
||||||
|
# Project-specific masks
|
||||||
|
.directory
|
||||||
|
output/
|
||||||
|
roms/
|
||||||
|
*.nes
|
||||||
|
*.sfc
|
||||||
|
*.spc
|
||||||
|
|
|
@ -42,8 +42,8 @@ import includes.ff4 as ff4
|
||||||
import includes.ff5 as ff5
|
import includes.ff5 as ff5
|
||||||
import includes.ff6 as ff6
|
import includes.ff6 as ff6
|
||||||
|
|
||||||
filename_jp_ff4 = 'Final Fantasy IV (Japan) (Rev A).sfc'
|
filename_jp_ff4 = 'roms/Final Fantasy IV (Japan) (Rev A).sfc'
|
||||||
filename_jp_ff6 = 'Final Fantasy VI (Japan).sfc'
|
filename_jp_ff6 = 'roms/Final Fantasy VI (Japan).sfc'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
from ..helpers import load_raw
|
from ..helpers import load_raw
|
||||||
|
|
||||||
filename_RPGe = 'Final Fantasy V (Japan) [En by RPGe v1.1].sfc'
|
filename_RPGe = 'roms/Final Fantasy V (Japan) [En by RPGe v1.1].sfc'
|
||||||
filename_SNES = 'Final Fantasy V (Japan).sfc'
|
filename_SNES = 'roms/Final Fantasy V (Japan).sfc'
|
||||||
|
|
||||||
ROM_RPGe = load_raw(filename_RPGe)
|
ROM_RPGe = load_raw(filename_RPGe)
|
||||||
ROM_SNES = load_raw(filename_SNES)
|
ROM_SNES = load_raw(filename_SNES)
|
||||||
|
|
Loading…
Reference in New Issue