mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Remove newlines from warning message strings
Signed-off-by: AntonioND <antonio_nd@outlook.com>
This commit is contained in:
committed by
Antonio Niño Díaz
parent
3c43cc14d9
commit
24439003f3
@@ -1286,7 +1286,7 @@ z80_jp : T_Z80_JP const_16bit
|
|||||||
{
|
{
|
||||||
out_AbsByte(0xE9);
|
out_AbsByte(0xE9);
|
||||||
if( nPass==1 )
|
if( nPass==1 )
|
||||||
warning("'JP [HL]' is obsolete, use 'JP HL' instead.\n");
|
warning("'JP [HL]' is obsolete, use 'JP HL' instead.");
|
||||||
}
|
}
|
||||||
| T_Z80_JP T_MODE_HL
|
| T_Z80_JP T_MODE_HL
|
||||||
{ out_AbsByte(0xE9); }
|
{ out_AbsByte(0xE9); }
|
||||||
@@ -1304,7 +1304,7 @@ z80_ldi : T_Z80_LDI T_MODE_HL_IND comma T_MODE_A
|
|||||||
{
|
{
|
||||||
out_AbsByte(0x0A|(2<<4));
|
out_AbsByte(0x0A|(2<<4));
|
||||||
if( nPass==1 )
|
if( nPass==1 )
|
||||||
warning("'LDI A,HL' is obsolete, use 'LDI A,[HL]' or 'LD A,[HL+] instead.\n");
|
warning("'LDI A,HL' is obsolete, use 'LDI A,[HL]' or 'LD A,[HL+] instead.");
|
||||||
}
|
}
|
||||||
| T_Z80_LDI T_MODE_A comma T_MODE_HL_IND
|
| T_Z80_LDI T_MODE_A comma T_MODE_HL_IND
|
||||||
{ out_AbsByte(0x0A|(2<<4)); }
|
{ out_AbsByte(0x0A|(2<<4)); }
|
||||||
@@ -1316,7 +1316,7 @@ z80_ldd : T_Z80_LDD T_MODE_HL_IND comma T_MODE_A
|
|||||||
{
|
{
|
||||||
out_AbsByte(0x0A|(3<<4));
|
out_AbsByte(0x0A|(3<<4));
|
||||||
if( nPass==1 )
|
if( nPass==1 )
|
||||||
warning("'LDD A,HL' is obsolete, use 'LDD A,[HL]' or 'LD A,[HL-] instead.\n");
|
warning("'LDD A,HL' is obsolete, use 'LDD A,[HL]' or 'LD A,[HL-] instead.");
|
||||||
}
|
}
|
||||||
| T_Z80_LDD T_MODE_A comma T_MODE_HL_IND
|
| T_Z80_LDD T_MODE_A comma T_MODE_HL_IND
|
||||||
{ out_AbsByte(0x0A|(3<<4)); }
|
{ out_AbsByte(0x0A|(3<<4)); }
|
||||||
|
|||||||
Reference in New Issue
Block a user