Skip to content

Commit

Permalink
apple/scsidma.cpp: Fix file corruption. [R. Belmont]
Browse files Browse the repository at this point in the history
  • Loading branch information
rb6502 committed Jul 8, 2024
1 parent f26b2ed commit d64e5be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mame/apple/scsidma.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ void scsidma_device::control_w(u32 data)
// check for unemulated features
if (data & CTRL_DMAEN)
{
fatalerror("%s: DMA mode enabled, but not supported!\n", tag);
fatalerror("%s: DMA mode enabled, but not supported!\n", tag());
}
if (data & CTRL_ARBEN)
{
Expand Down

3 comments on commit d64e5be

@galibert
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Comment and diff are obviously mismatched, did you miss something in the git add?

@rb6502
Copy link
Contributor Author

@rb6502 rb6502 commented on d64e5be Jul 8, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Heh, no, I meant this .cpp file got slightly corrupted, not that it was corrupting things in the emulation.

@galibert
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ahhh ok :-)

Please sign in to comment.