mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-06-28 09:59:41 -06:00
hopefully fix Qt6
This commit is contained in:
@ -90,7 +90,7 @@ bool FirmwareSettingsDialog::verifyMAC()
|
||||
int pos = 0;
|
||||
for (int i = 0; i < maclen;)
|
||||
{
|
||||
QCharRef c = mac[i];
|
||||
QChar c = mac[i];
|
||||
bool good = false;
|
||||
if (c >= '0' && c <= '9') good = true;
|
||||
else if (c >= 'a' && c <= 'f') good = true;
|
||||
|
Reference in New Issue
Block a user