Skip to content

Commit

Permalink
Update to latest lazer version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Game4all committed Feb 19, 2023
1 parent 8812b0f commit 8c1e36b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace osu.Game.Rulesets.Gamebosu.UI.Screens.Listing
/// <summary>
/// Handles import of GB / GBC files.
/// </summary>
public class RomImportHandler : Component, ICanAcceptFiles
public partial class RomImportHandler : Component, ICanAcceptFiles
{
[Resolved]
private ListingSubScreen listing { get; set; }
Expand All @@ -25,9 +25,9 @@ public class RomImportHandler : Component, ICanAcceptFiles

public IEnumerable<string> HandledExtensions => RomStore.RecognizedExtensions;

public Task Import(params string[] paths) => Import(paths.Select(path => new ImportTask(path)).ToArray());
public Task Import(params string[] paths) => Import(paths.Select(path => new ImportTask(path)).ToArray(), default);

public Task Import(params ImportTask[] tasks) => Task.Run(() =>
public Task Import(ImportTask[] tasks, ImportParameters parameters) => Task.Run(() =>
{
foreach (var task in tasks)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<EmbeddedResource Include="Resources\**\*" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ppy.osu.Game" Version="2022.1022.0" />
<PackageReference Include="ppy.osu.Game" Version="2023.207.0" />
<ProjectReference Include="..\Emux\Emux.GameBoy\Emux.GameBoy.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)'=='Release'">
Expand Down

0 comments on commit 8c1e36b

Please sign in to comment.