Skip to content

Commit

Permalink
<fix> fix code reference problem
Browse files Browse the repository at this point in the history
  • Loading branch information
anonymousException committed Jun 7, 2024
1 parent c2c60a4 commit b368db7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/extraction_official_form.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from my_log import log_print
from editor_form import open_directory_and_select_file
from extraction_official import Ui_ExtractionOfficialDialog
from call_game_python import get_py_path
from call_game_python import get_python_path_from_game_path, get_py_path
import my_log


Expand Down Expand Up @@ -108,7 +108,7 @@ def run(self):


def get_translate_cmd(game_path, tl_name):
python_path = get_python_path(game_path)
python_path = get_python_path_from_game_path(game_path)
py_path = get_py_path(game_path)
game_dir = os.path.dirname(game_path)
command = '"' + python_path + '"' + ' -O "' + py_path + '" "' + game_dir + '" translate "' + tl_name + '"'
Expand Down
2 changes: 1 addition & 1 deletion src/game_unpacker_form.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def set_window_on_top(hwnd):


def get_unrpyc_command(game_path):
python_path = get_python_path(game_path)
python_path = get_python_path_from_game_path(game_path)
game_dir = os.path.dirname(game_path)
unrpyc_path = game_dir + '/unrpyc.py'
command = '"' + python_path + '" -O "' + unrpyc_path + '" "' + game_dir + '"'
Expand Down

0 comments on commit b368db7

Please sign in to comment.