diff options
author | hop311 <hop3114@gmail.com> | 2024-03-03 14:23:21 +0100 |
---|---|---|
committer | hop311 <hop3114@gmail.com> | 2024-03-03 14:29:30 +0100 |
commit | d45d6270c8924f571b53d71ac8eb9ce5a7788255 (patch) | |
tree | a617e5ff1f417797330e9a81abb478700b602ec4 /game/src/Game/GameStart.gd | |
parent | 9e305db5e5090a1a24979c480d64eebfe2de65da (diff) |
ProgressBar, StyleBoxTexture, Icon tweaks + current dir install check fix
Diffstat (limited to 'game/src/Game/GameStart.gd')
-rw-r--r-- | game/src/Game/GameStart.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/src/Game/GameStart.gd b/game/src/Game/GameStart.gd index 0aadbb9..6074df8 100644 --- a/game/src/Game/GameStart.gd +++ b/game/src/Game/GameStart.gd @@ -70,7 +70,7 @@ func _setup_compatibility_mode_paths() -> void: else: # Check if the program is being run from inside the install directory, # and if not also search for a Steam install - actual_base_path = GameSingleton.search_for_game_path("..") + actual_base_path = GameSingleton.search_for_game_path(".") if not actual_base_path: get_tree().paused = true vic2_dir_dialog.popup_centered_ratio() |