DEV9: Make socket auto adapter name translatable

This commit is contained in:
TheLastRar
2025-11-29 22:54:16 +01:00
committed by lightningterror
parent b935ec3d19
commit 2569193b05
+2 -1
View File
@@ -20,6 +20,7 @@
#include "sockets.h"
#include "AdapterUtils.h"
#include "DEV9.h"
#include "Host.h"
#include "Sessions/ICMP_Session/ICMP_Session.h"
#include "Sessions/TCP_Session/TCP_Session.h"
@@ -45,7 +46,7 @@ std::vector<AdapterEntry> SocketAdapter::GetAdapters()
std::vector<AdapterEntry> nic;
AdapterEntry autoEntry;
autoEntry.type = Pcsx2Config::DEV9Options::NetApi::Sockets;
autoEntry.name = "Auto";
autoEntry.name = TRANSLATE_STR("DEV9", "Auto");
autoEntry.guid = "Auto";
nic.push_back(autoEntry);