From eebffe4a4ccadd36f468b77ffe6d7583417fba1d Mon Sep 17 00:00:00 2001 From: adelikat Date: Tue, 5 Mar 2024 20:08:55 -0600 Subject: [PATCH] stylecop --- ...03153902_VariousStringLengthConstraints.cs | 59 +++++++++---------- TASVideos.Parsers/Parsers/Bk2.cs | 1 + 2 files changed, 30 insertions(+), 30 deletions(-) diff --git a/TASVideos.Data/Migrations/20240303153902_VariousStringLengthConstraints.cs b/TASVideos.Data/Migrations/20240303153902_VariousStringLengthConstraints.cs index 1fbdb1439..3975cf8c8 100644 --- a/TASVideos.Data/Migrations/20240303153902_VariousStringLengthConstraints.cs +++ b/TASVideos.Data/Migrations/20240303153902_VariousStringLengthConstraints.cs @@ -2,38 +2,37 @@ #nullable disable -namespace TASVideos.Data.Migrations +namespace TASVideos.Data.Migrations; + +/// +public partial class VariousStringLengthConstraints : Migration { - /// - public partial class VariousStringLengthConstraints : Migration - { - /// - protected override void Up(MigrationBuilder migrationBuilder) - { - migrationBuilder.DropColumn( - name: "warnings", - table: "user_files"); + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "warnings", + table: "user_files"); - migrationBuilder.DropColumn( - name: "title", - table: "user_file_comments"); - } + migrationBuilder.DropColumn( + name: "title", + table: "user_file_comments"); + } - /// - protected override void Down(MigrationBuilder migrationBuilder) - { - migrationBuilder.AddColumn( - name: "warnings", - table: "user_files", - type: "citext", - nullable: true); + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "warnings", + table: "user_files", + type: "citext", + nullable: true); - migrationBuilder.AddColumn( - name: "title", - table: "user_file_comments", - type: "citext", - maxLength: 255, - nullable: true); - } - } + migrationBuilder.AddColumn( + name: "title", + table: "user_file_comments", + type: "citext", + maxLength: 255, + nullable: true); + } } diff --git a/TASVideos.Parsers/Parsers/Bk2.cs b/TASVideos.Parsers/Parsers/Bk2.cs index 53fd952e5..66923369c 100644 --- a/TASVideos.Parsers/Parsers/Bk2.cs +++ b/TASVideos.Parsers/Parsers/Bk2.cs @@ -13,6 +13,7 @@ internal class Bk2 : ParserBase, IParser private const double NtscNesFramerate = 60.0988138974405; private const double NtscSnesFramerate = 60.0988138974405; private const double PalSnesFramerate = 50.0069789081886; + // mednafen values to match current octoshock private const double NtscPsxFramerate = 59.94006013870239; private const double PalPsxFramerate = 50.00028192996979;