File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -23,10 +23,10 @@ public List<SnesRecurringMemoryRequest> GetMemoryRequests()
2323 AddressFormat = AddressFormat . Snes9x ,
2424 RespondOnChangeOnly = true ,
2525 FrequencySeconds = 1 ,
26- OnResponse = ( data =>
26+ OnResponse = ( data , prevData ) =>
2727 {
2828 OnTrackChanged ? . Invoke ( this , new TrackNumberChangedEventArgs ( data . ReadUInt8 ( 0 ) ?? 0 ) ) ;
29- } )
29+ }
3030 }
3131 } ;
3232 }
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public List<SnesRecurringMemoryRequest> GetMemoryRequests()
2525 SniMemoryMapping = MemoryMapping . ExHiRom ,
2626 AddressFormat = AddressFormat . Snes9x ,
2727 RespondOnChangeOnly = true ,
28- OnResponse = data =>
28+ OnResponse = ( data , prevData ) =>
2929 {
3030 var value = data . ReadUInt8 ( 0 ) ;
3131 if ( value == 0x00 )
@@ -55,7 +55,7 @@ public List<SnesRecurringMemoryRequest> GetMemoryRequests()
5555 RespondOnChangeOnly = true ,
5656 Filter = ( ) => CurrentGame == SMZ3Game . Zelda ,
5757 FrequencySeconds = 1 ,
58- OnResponse = data =>
58+ OnResponse = ( data , prevData ) =>
5959 {
6060 var value = data . ReadUInt8 ( 0 ) ;
6161
@@ -79,7 +79,7 @@ public List<SnesRecurringMemoryRequest> GetMemoryRequests()
7979 RespondOnChangeOnly = true ,
8080 Filter = ( ) => CurrentGame is SMZ3Game . Metroid or SMZ3Game . Neither ,
8181 FrequencySeconds = 1 ,
82- OnResponse = data =>
82+ OnResponse = ( data , prevData ) =>
8383 {
8484 var value = data . ReadUInt8 ( 0 ) ;
8585
Original file line number Diff line number Diff line change 1414 <PackageRequireLicenseAcceptance >False</PackageRequireLicenseAcceptance >
1515 <IncludeSymbols >False</IncludeSymbols >
1616 <SymbolPackageFormat >snupkg</SymbolPackageFormat >
17- <Version >2.0.0</Version >
17+ <Version >2.0.0-rc.8 </Version >
1818 <PackageId >MattEqualsCoder.MSURandomizer.Library</PackageId >
1919 <GenerateDocumentationFile >True</GenerateDocumentationFile >
2020 <TargetFramework >net8.0</TargetFramework >
4141 </ItemGroup >
4242
4343 <ItemGroup >
44- <PackageReference Include =" MattEqualsCoder.SnesConnectorLibrary" Version =" 0.9.4 " />
44+ <PackageReference Include =" MattEqualsCoder.SnesConnectorLibrary" Version =" 0.9.5 " />
4545 <PackageReference Include =" Microsoft.Extensions.DependencyInjection.Abstractions" Version =" 8.0.1" />
4646 <PackageReference Include =" Microsoft.Extensions.Logging.Abstractions" Version =" 8.0.1" />
4747 <PackageReference Include =" YamlDotNet" Version =" 15.1.2" />
Original file line number Diff line number Diff line change 66 <UseWPF >true</UseWPF >
77 <GeneratePackageOnBuild >true</GeneratePackageOnBuild >
88 <PackageId >MattEqualsCoder.MSURandomizer.UI</PackageId >
9- <Version >2.0.0-rc.3 </Version >
9+ <Version >2.0.0-rc.8 </Version >
1010 <PackageProjectUrl >https://github.com/MattEqualsCoder/MSURandomizer</PackageProjectUrl >
1111 <RepositoryUrl >https://github.com/MattEqualsCoder/MSURandomizer</RepositoryUrl >
1212 <GenerateDocumentationFile >True</GenerateDocumentationFile >
You can’t perform that action at this time.
0 commit comments