From 860b7358d9ccb8bbb79a402978c714927f4a989c Mon Sep 17 00:00:00 2001 From: Sour Date: Sat, 19 Oct 2024 16:32:10 +0900 Subject: [PATCH] SNES: Fixed broken date/time for Satellaview --- UI/Config/SnesConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/Config/SnesConfig.cs b/UI/Config/SnesConfig.cs index 4144ae035..832fdeef1 100644 --- a/UI/Config/SnesConfig.cs +++ b/UI/Config/SnesConfig.cs @@ -118,7 +118,7 @@ public void ApplyConfig() GsuClockSpeed = this.GsuClockSpeed, RamPowerOnState = this.RamPowerOnState, SpcClockSpeedAdjustment = this.SpcClockSpeedAdjustment, - BsxCustomDate = this.BsxCustomDate.Ticks + this.BsxCustomTime.Ticks + BsxCustomDate = BsxUseCustomTime ? (this.BsxCustomDate.ToUnixTimeSeconds() + (long)this.BsxCustomTime.TotalSeconds) : -1 }); }