Fix cl enum values.

This commit is contained in:
lzwdgc 2019-03-11 01:30:26 +03:00
parent f741ade168
commit 943f38dc96
2 changed files with 3 additions and 3 deletions

View file

@ -112,7 +112,7 @@ int main(int argc, char *argv[])
} }
} }
else else
throw std::runtime_error("Bad fs object"); throw std::runtime_error("No such file or directory: " + normalize_path(p));
if (stats) if (stats)
{ {

View file

@ -93,9 +93,9 @@ enum AxisSystem
UE4 = AIM, // Do not use 'Convert scene' during UE4 import! UE4 = AIM, // Do not use 'Convert scene' during UE4 import!
ax_aim = AIM, ax_aim = AIM,
ax_ue4, ax_ue4 = ax_aim,
ax_maya_y = MayaYUpZFrontRH, ax_maya_y = MayaYUpZFrontRH,
ax_win_3d_viewer, ax_win_3d_viewer = ax_maya_y,
}; };
cl::opt<AxisSystem> AS(cl::desc("Choose axis system:"), cl::opt<AxisSystem> AS(cl::desc("Choose axis system:"),