Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up user-facing strings to facilitate translation #158

Open
wants to merge 16 commits into
base: dev
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Don't split that one sentene in the middle with an #ifdef
  • Loading branch information
JesseTG committed Jan 30, 2024
commit 302592cc8f6e6cc6063ccdcb8421248f9b358a3c
13 changes: 7 additions & 6 deletions src/libretro/config/definitions/network.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,13 @@ namespace MelonDsDs::config::definitions {
"Indirect: Use libslirp to emulate the DS's network stack. Simple and needs no setup.\n"
#ifdef HAVE_NETWORKING_DIRECT_MODE
"Direct: Routes emulated Wi-Fi packets to the host's network interface. "
"Faster and more reliable, but requires an ethernet connection and "
#ifdef _WIN32
"that WinPcap or Npcap is installed. "
#else
"that libpcap is installed. "
#endif
# ifdef _WIN32
"Faster and more reliable, but requires an ethernet connection "
"and that WinPcap or Npcap is installed. "
# else
"Faster and more reliable, but requires an ethernet connection "
"and that libpcap is installed. "
# endif
"If unavailable, falls back to Indirect mode.\n"
#endif
"\n"
Expand Down