We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When edit constants/map_data_constant.asm: ; map palettes (wEnvironment) const_def const PALETTE_AUTO const PALETTE_DAY const PALETTE_NITE const PALETTE_MORN
+IN_DARKNESS_F EQU 3 +IN_DARKNESS EQU 1 << IN_DARKNESS_F ; masked with a PALETTE_* constant
terminal show me this error:
rgbasm -Q8 -P includes.asm -Weverything -Wnumeric-string=2 -Wtruncation=1 -o audio.o audio.asm error: audio.asm(0) -> includes.asm(43) -> constants/map_data_constants.asm(41): syntax error, unexpected EQU, expecting : or :: error: audio.asm(0) -> includes.asm(43) -> constants/map_data_constants.asm(42): syntax error, unexpected EQU, expecting : or :: error: Assembly aborted (2 errors)! make: *** [Makefile:128: audio.o] Errore 1
The text was updated successfully, but these errors were encountered:
I have encountered this same issue using RGDBS 0.8.0.
Sorry, something went wrong.
No branches or pull requests
When edit constants/map_data_constant.asm:
; map palettes (wEnvironment)
const_def
const PALETTE_AUTO
const PALETTE_DAY
const PALETTE_NITE
const PALETTE_MORN
NUM_MAP_PALETTES EQU const_value
+IN_DARKNESS_F EQU 3
+IN_DARKNESS EQU 1 << IN_DARKNESS_F ; masked with a PALETTE_* constant
terminal show me this error:
rgbasm -Q8 -P includes.asm -Weverything -Wnumeric-string=2 -Wtruncation=1 -o audio.o audio.asm
error: audio.asm(0) -> includes.asm(43) -> constants/map_data_constants.asm(41):
syntax error, unexpected EQU, expecting : or ::
error: audio.asm(0) -> includes.asm(43) -> constants/map_data_constants.asm(42):
syntax error, unexpected EQU, expecting : or ::
error: Assembly aborted (2 errors)!
make: *** [Makefile:128: audio.o] Errore 1
The text was updated successfully, but these errors were encountered: