| 2460 | }; |
| 2461 | |
| 2462 | std::string ResourcePack::makeposix(const std::string& path) |
| 2463 | { |
| 2464 | std::string o; |
| 2465 | for (auto s : path) o += std::string(1, s == '\\' ? '/' : s); |
| 2466 | return o; |
| 2467 | }; |
| 2468 | |
| 2469 | // O------------------------------------------------------------------------------O |
| 2470 | // | olc::PixelGameEngine IMPLEMENTATION | |
nothing calls this directly
no outgoing calls
no test coverage detected