Revert "game: cleanup gk's CLI documentation" (#2306)

Reverts open-goal/jak-project#2189

can't figure out how to use the new options yet
This commit is contained in:
water111
2023-03-09 20:24:43 -05:00
committed by GitHub
parent 021bae08ec
commit 15bf281377
18 changed files with 117 additions and 203 deletions
-1
View File
@@ -129,7 +129,6 @@ std::optional<std::string> try_get_jak_project_path() {
std::optional<fs::path> try_get_data_dir() {
fs::path my_path = get_current_executable_path();
lg::info("Current executable directory - {}", my_path.string());
auto data_dir = my_path.parent_path() / "data";
if (fs::exists(data_dir) && fs::is_directory(data_dir)) {
return std::make_optional(data_dir);