Skip to content

Commit

Permalink
Add Localized Toggle to Extract-Iwd
Browse files Browse the repository at this point in the history
Resolve #50
  • Loading branch information
SE2Dev committed May 22, 2018
1 parent 6d8f333 commit 0fe9ec8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/asset_util/cmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ REGISTER_GLOBAL_COMMAND(g_cmd_test, "test", "An empty test command", Cmd_Test_f,
#endif
REGISTER_GLOBAL_COMMAND(g_cmd_help, "help", "Print usage information", Cmd_Help_f, CMD_GLOBALCVARS);

REGISTER_GLOBAL_COMMAND(g_cmd_extract_ff, "extract-ff", "Extract assets from *.ff files", Cmd_Extract_FF_f, CMD_CVARS(&g_extractAll, &g_extractSounds,&g_useLocalized, &fs_outdir));
REGISTER_GLOBAL_COMMAND(g_cmd_extract_iwd, "extract-iwd", "Extract assets from *.iwd files", Cmd_Extract_IWD_f, CMD_CVARS(&g_extractAll, &g_extractImages, &g_extractSounds, &fs_outdir));
REGISTER_GLOBAL_COMMAND(g_cmd_extract_ff, "extract-ff", "Extract assets from *.ff files", Cmd_Extract_FF_f, CMD_CVARS(&g_extractAll, &g_extractSounds, &g_useLocalized, &fs_outdir));
REGISTER_GLOBAL_COMMAND(g_cmd_extract_iwd, "extract-iwd", "Extract assets from *.iwd files", Cmd_Extract_IWD_f, CMD_CVARS(&g_extractAll, &g_extractImages, &g_extractSounds, &g_useLocalized, &fs_outdir));
REGISTER_GLOBAL_COMMAND(g_cmd_search, "search", "Search IWD's and / or FastFiles for a pattern", Cmd_Search_f, CMD_CVARS(&g_useLocalized));
REGISTER_GLOBAL_COMMAND(g_cmd_rip, "rip", "Rip assets from the running game process", Cmd_Rip_f, CMD_CVARS(&fs_outdir, &rip_targetMap, &rip_waitForProcess, &rip_waitForMap, &rip_killProcess));

Expand Down

0 comments on commit 0fe9ec8

Please sign in to comment.