Skip to content

Commit

Permalink
Fix sm not being saved
Browse files Browse the repository at this point in the history
  • Loading branch information
tillvit committed Dec 18, 2024
1 parent fedebde commit 477a83b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/chart/ChartManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1649,7 +1649,7 @@ export class ChartManager {
let error: string | null = null
if (
!this.loadedSM.usesChartTiming() &&
(await FileHandler.getFileHandle(this.getSMPath(".smebak")))
(await FileHandler.getFileHandle(this.getSMPath(".sm")))
) {
await FileHandler.writeFile(smPath, this.loadedSM.serialize("sm")).catch(
err => {
Expand Down

0 comments on commit 477a83b

Please sign in to comment.