mirror of https://github.com/PCSX2/pcsx2.git
Debugger: initialise SavedAddress.address with 0 instead of NULL
This commit is contained in:
parent
dcdf3b39a3
commit
ab68c570a9
|
@ -119,7 +119,7 @@ Qt::ItemFlags SavedAddressesModel::flags(const QModelIndex& index) const
|
|||
|
||||
void SavedAddressesModel::addRow()
|
||||
{
|
||||
const SavedAddress defaultNewAddress = {NULL, "Name", "Description"};
|
||||
const SavedAddress defaultNewAddress = {0, "Name", "Description"};
|
||||
addRow(defaultNewAddress);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue