mirror of
https://github.com/holub/mame
synced 2025-05-17 11:15:06 +03:00
Fix compile error.
This commit is contained in:
parent
b59eb83588
commit
39cd5cc7f5
@ -3165,7 +3165,7 @@ bool device_debug::breakpoint::hit(offs_t pc)
|
||||
{
|
||||
return (m_condition.execute() != 0);
|
||||
}
|
||||
catch (expression_error &err)
|
||||
catch (expression_error &)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
@ -3223,7 +3223,7 @@ bool device_debug::watchpoint::hit(int type, offs_t address, int size)
|
||||
{
|
||||
return (m_condition.execute() != 0);
|
||||
}
|
||||
catch (expression_error &err)
|
||||
catch (expression_error &)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user