| 81 | bool isRunning = false; |
| 82 | |
| 83 | std::string GetHDDPath() |
| 84 | { |
| 85 | //GHC uses UTF8 on all platforms |
| 86 | std::string hddPath(EmuConfig.DEV9.HddFile); |
| 87 | |
| 88 | if (hddPath.empty()) |
| 89 | EmuConfig.DEV9.HddEnable = false; |
| 90 | |
| 91 | if (!Path::IsAbsolute(hddPath)) |
| 92 | hddPath = Path::Combine(EmuFolders::Settings, hddPath); |
| 93 | |
| 94 | return hddPath; |
| 95 | } |
| 96 | |
| 97 | s32 DEV9init() |
| 98 | { |
no test coverage detected