Skip to content

Commit

Permalink
Fixed build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
EliteAsian123 committed Jan 30, 2023
1 parent 77e6916 commit c87b9af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Assets/Script/UI/MainMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ private void Start() {
Instance = this;

// Load song folder from player prefs
if (PlayerPrefs.GetString("songFolder") != null) {
if (!string.IsNullOrEmpty(PlayerPrefs.GetString("songFolder"))) {
SongLibrary.songFolder = new(PlayerPrefs.GetString("songFolder"));
}

Expand Down
3 changes: 2 additions & 1 deletion ProjectSettings/ProjectSettings.asset
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ PlayerSettings:
vulkanEnableCommandBufferRecycling: 1
loadStoreDebugModeEnabled: 0
bundleVersion: 0.1.0
preloadedAssets: []
preloadedAssets:
- {fileID: 11400000, guid: 8efbce013f4e1c34895851b7038c76e9, type: 2}
metroInputSource: 0
wsaTransparentSwapchain: 0
m_HolographicPauseOnTrackingLoss: 1
Expand Down

0 comments on commit c87b9af

Please sign in to comment.