Fix warnings when built using nasm.

Nasm gives warnings about labels without colons in the end; these were particularly prevalent in struc members: ".size" has be ".size:". Nasm also wasn't happy with extra trailing commas when calling macros.
This commit is contained in:
Veikko Sariola
2020-11-02 22:31:22 +02:00
parent eb37d8123d
commit dc88b885e9
47 changed files with 75 additions and 70 deletions

View File

@ -141,16 +141,16 @@ struc su_stack ; the structure of stack _as the units see it_
%ifdef INCLUDE_POLYPHONY
.polyphony RESPTR 1
%endif
.output_sound
.output_sound:
.rowtick RESPTR 1 ; which tick within this row are we at
.update_voices
.update_voices:
.row RESPTR 1 ; which total row of the song are we at
.tick RESPTR 1 ; which total tick of the song are we at
.randseed RESPTR 1
%ifdef INCLUDE_MULTIVOICE_TRACKS
.voicetrack RESPTR 1
%endif
.render_epilogue
.render_epilogue:
%if BITS == 32
RESPTR 8 ; registers
.retaddr_pl RESPTR 1
@ -160,7 +160,7 @@ struc su_stack ; the structure of stack _as the units see it_
RESPTR 2 ; registers
%endif
.bufferptr RESPTR 1
.size
.size:
endstruc
;===============================================================================