| 3600 | } |
| 3601 | |
| 3602 | void cFodder::DataNotFound() { |
| 3603 | g_Debugger->Error("No game data could be found, including the demos, have you installed the data pack?"); |
| 3604 | |
| 3605 | g_Debugger->Error("We are looking for the 'Data' directory in: "); |
| 3606 | for (auto path : g_ResourceMan->getAllPaths()) { |
| 3607 | g_Debugger->Error(path); |
| 3608 | } |
| 3609 | |
| 3610 | g_Debugger->Error("Press enter to quit"); |
| 3611 | std::cin.get(); |
| 3612 | exit(1); |
| 3613 | } |
| 3614 | |
| 3615 | void cFodder::Prepare(std::shared_ptr<sFodderParameters> pParams) { |
| 3616 | mParams = std::make_shared<sFodderParameters>(*pParams); |
nothing calls this directly
no test coverage detected