Update directories

This commit is contained in:
Luke Hubmayer-Werner 2023-07-22 15:58:09 +09:30
parent 0198cf7185
commit d78c8f9817
3 changed files with 12 additions and 4 deletions

8
.gitignore vendored
View File

@ -158,3 +158,11 @@ cython_debug/
# 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.
#.idea/
# Project-specific masks
.directory
output/
roms/
*.nes
*.sfc
*.spc

View File

@ -42,8 +42,8 @@ import includes.ff4 as ff4
import includes.ff5 as ff5
import includes.ff6 as ff6
filename_jp_ff4 = 'Final Fantasy IV (Japan) (Rev A).sfc'
filename_jp_ff6 = 'Final Fantasy VI (Japan).sfc'
filename_jp_ff4 = 'roms/Final Fantasy IV (Japan) (Rev A).sfc'
filename_jp_ff6 = 'roms/Final Fantasy VI (Japan).sfc'

View File

@ -1,7 +1,7 @@
from ..helpers import load_raw
filename_RPGe = 'Final Fantasy V (Japan) [En by RPGe v1.1].sfc'
filename_SNES = 'Final Fantasy V (Japan).sfc'
filename_RPGe = 'roms/Final Fantasy V (Japan) [En by RPGe v1.1].sfc'
filename_SNES = 'roms/Final Fantasy V (Japan).sfc'
ROM_RPGe = load_raw(filename_RPGe)
ROM_SNES = load_raw(filename_SNES)