mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-12-16 04:08:48 +00:00
DEV9: Make socket auto adapter name translatable
This commit is contained in:
parent
b935ec3d19
commit
2569193b05
@ -20,6 +20,7 @@
|
|||||||
#include "sockets.h"
|
#include "sockets.h"
|
||||||
#include "AdapterUtils.h"
|
#include "AdapterUtils.h"
|
||||||
#include "DEV9.h"
|
#include "DEV9.h"
|
||||||
|
#include "Host.h"
|
||||||
|
|
||||||
#include "Sessions/ICMP_Session/ICMP_Session.h"
|
#include "Sessions/ICMP_Session/ICMP_Session.h"
|
||||||
#include "Sessions/TCP_Session/TCP_Session.h"
|
#include "Sessions/TCP_Session/TCP_Session.h"
|
||||||
@ -45,7 +46,7 @@ std::vector<AdapterEntry> SocketAdapter::GetAdapters()
|
|||||||
std::vector<AdapterEntry> nic;
|
std::vector<AdapterEntry> nic;
|
||||||
AdapterEntry autoEntry;
|
AdapterEntry autoEntry;
|
||||||
autoEntry.type = Pcsx2Config::DEV9Options::NetApi::Sockets;
|
autoEntry.type = Pcsx2Config::DEV9Options::NetApi::Sockets;
|
||||||
autoEntry.name = "Auto";
|
autoEntry.name = TRANSLATE_STR("DEV9", "Auto");
|
||||||
autoEntry.guid = "Auto";
|
autoEntry.guid = "Auto";
|
||||||
nic.push_back(autoEntry);
|
nic.push_back(autoEntry);
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user