update gitignore
This commit is contained in:
parent
d969d0e276
commit
f4ca1be44a
|
@ -27,3 +27,5 @@ flipscfg.bin
|
||||||
*.rle
|
*.rle
|
||||||
# Graphics dumped from ROM should go in this folder
|
# Graphics dumped from ROM should go in this folder
|
||||||
Other (Unneeded) Files/dump
|
Other (Unneeded) Files/dump
|
||||||
|
# CrystalTile2's config file, unneeded...
|
||||||
|
Other (Unneeded) Files/crystaltile2/CrystalTile2.ini
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
||||||
.include tools/ASM/lz77hack.asm
|
.include tools/ASM/lz77hack.asm
|
||||||
.include tools/ASM/debug.asm
|
.include tools/ASM/debug.asm
|
||||||
.if _skipwarningscreen==1
|
.if _skipwarningscreen==1 ;Pratically useless
|
||||||
.org 0x08000454
|
.org 0x08000454
|
||||||
.dw 0x089DD47C
|
.dw 0x089DD47C
|
||||||
.endif
|
.endif
|
||||||
|
|
|
@ -9,10 +9,14 @@ _nocashmessages equ 0
|
||||||
_luaconsolemessages equ 0
|
_luaconsolemessages equ 0
|
||||||
|
|
||||||
.if _debug==1
|
.if _debug==1
|
||||||
.notice "Debug flag enabled!"
|
.notice "Debug flag enabled! Do not use for release!!!"
|
||||||
_spriteluaconsolemessages equ 1 ; (Hotfix, for some reason _debug alone gives pool out of range errors.)
|
_spriteluaconsolemessages equ 1 ; (Hotfix, for some reason _debug alone gives pool out of range errors.)
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
.if _debugmenu==1
|
||||||
|
.notice "Debug menu enabled! Do not use for release!!!"
|
||||||
|
.endif
|
||||||
|
|
||||||
.include tools/ASM/relocate.asm
|
.include tools/ASM/relocate.asm
|
||||||
|
|
||||||
.include src/Graphics/TitleScreen/TitleScreen.asm
|
.include src/Graphics/TitleScreen/TitleScreen.asm
|
||||||
|
|
Loading…
Reference in New Issue