mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-10-14 02:17:36 +08:00
Replace comma with semicolon
This commit is contained in:
@@ -495,7 +495,7 @@ public:
|
||||
CBreakpoint(void);
|
||||
void SetAddress (uint16_t seg, uint32_t off) { location = (PhysPt)GetAddress(seg,off); type = BKPNT_PHYSICAL; segment = seg; offset = off; };
|
||||
void SetAddress (PhysPt adr) { location = adr; type = BKPNT_PHYSICAL; };
|
||||
void SetInt (uint8_t _intNr, uint16_t ah, uint16_t al) { intNr = _intNr, ahValue = ah; alValue = al; type = BKPNT_INTERRUPT; };
|
||||
void SetInt (uint8_t _intNr, uint16_t ah, uint16_t al) { intNr = _intNr; ahValue = ah; alValue = al; type = BKPNT_INTERRUPT; };
|
||||
void SetOnce (bool _once) { once = _once; };
|
||||
void SetType (EBreakpoint _type) { type = _type; };
|
||||
void SetValue (uint8_t value) { ahValue = value; };
|
||||
|
Reference in New Issue
Block a user