EmuHawk: Add description to N64 profile informing user about auto-skipping lag frames during frame advance. Fixes #2380

This commit is contained in:
alyosha-tas 2021-11-28 10:27:01 -05:00
parent f7936a34f8
commit 47c8d4f6e8
2 changed files with 106 additions and 105 deletions

View File

@ -41,7 +41,7 @@
// OkBtn // OkBtn
// //
this.OkBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.OkBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.OkBtn.Location = new System.Drawing.Point(290, 231); this.OkBtn.Location = new System.Drawing.Point(290, 297);
this.OkBtn.Name = "OkBtn"; this.OkBtn.Name = "OkBtn";
this.OkBtn.Size = new System.Drawing.Size(60, 23); this.OkBtn.Size = new System.Drawing.Size(60, 23);
this.OkBtn.TabIndex = 0; this.OkBtn.TabIndex = 0;
@ -53,7 +53,7 @@
// //
this.CancelBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.CancelBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.CancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.CancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.CancelBtn.Location = new System.Drawing.Point(356, 231); this.CancelBtn.Location = new System.Drawing.Point(356, 297);
this.CancelBtn.Name = "CancelBtn"; this.CancelBtn.Name = "CancelBtn";
this.CancelBtn.Size = new System.Drawing.Size(60, 23); this.CancelBtn.Size = new System.Drawing.Size(60, 23);
this.CancelBtn.TabIndex = 1; this.CancelBtn.TabIndex = 1;
@ -67,9 +67,9 @@
this.ProfileSelectComboBox.FormattingEnabled = true; this.ProfileSelectComboBox.FormattingEnabled = true;
this.ProfileSelectComboBox.Items.AddRange(new object[] { this.ProfileSelectComboBox.Items.AddRange(new object[] {
"Casual Gaming", "Casual Gaming",
"Longplays",
"Tool-assisted Speedruns", "Tool-assisted Speedruns",
"N64 Tool-assisted Speedruns", "N64 Tool-assisted Speedruns"});
"Longplays"});
this.ProfileSelectComboBox.Location = new System.Drawing.Point(12, 27); this.ProfileSelectComboBox.Location = new System.Drawing.Point(12, 27);
this.ProfileSelectComboBox.Name = "ProfileSelectComboBox"; this.ProfileSelectComboBox.Name = "ProfileSelectComboBox";
this.ProfileSelectComboBox.Size = new System.Drawing.Size(156, 21); this.ProfileSelectComboBox.Size = new System.Drawing.Size(156, 21);
@ -82,7 +82,7 @@
this.ProfileDialogHelpTexBox.Location = new System.Drawing.Point(218, 12); this.ProfileDialogHelpTexBox.Location = new System.Drawing.Point(218, 12);
this.ProfileDialogHelpTexBox.Name = "ProfileDialogHelpTexBox"; this.ProfileDialogHelpTexBox.Name = "ProfileDialogHelpTexBox";
this.ProfileDialogHelpTexBox.ReadOnly = true; this.ProfileDialogHelpTexBox.ReadOnly = true;
this.ProfileDialogHelpTexBox.Size = new System.Drawing.Size(198, 174); this.ProfileDialogHelpTexBox.Size = new System.Drawing.Size(198, 240);
this.ProfileDialogHelpTexBox.TabIndex = 2; this.ProfileDialogHelpTexBox.TabIndex = 2;
this.ProfileDialogHelpTexBox.Text = resources.GetString("ProfileDialogHelpTexBox.Text"); this.ProfileDialogHelpTexBox.Text = resources.GetString("ProfileDialogHelpTexBox.Text");
// //
@ -96,7 +96,7 @@
// //
this.OtherOptions.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.OtherOptions.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.OtherOptions.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.OtherOptions.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.OtherOptions.Location = new System.Drawing.Point(9, 190); this.OtherOptions.Location = new System.Drawing.Point(9, 256);
this.OtherOptions.Name = "OtherOptions"; this.OtherOptions.Name = "OtherOptions";
this.OtherOptions.Text = "Other Options"; this.OtherOptions.Text = "Other Options";
// //
@ -104,7 +104,7 @@
// //
this.AutoCheckForUpdates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.AutoCheckForUpdates.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.AutoCheckForUpdates.AutoSize = true; this.AutoCheckForUpdates.AutoSize = true;
this.AutoCheckForUpdates.Location = new System.Drawing.Point(12, 208); this.AutoCheckForUpdates.Location = new System.Drawing.Point(12, 274);
this.AutoCheckForUpdates.Name = "AutoCheckForUpdates"; this.AutoCheckForUpdates.Name = "AutoCheckForUpdates";
this.AutoCheckForUpdates.Size = new System.Drawing.Size(345, 17); this.AutoCheckForUpdates.Size = new System.Drawing.Size(345, 17);
this.AutoCheckForUpdates.TabIndex = 13; this.AutoCheckForUpdates.TabIndex = 13;
@ -117,7 +117,7 @@
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.CancelBtn; this.CancelButton = this.CancelBtn;
this.ClientSize = new System.Drawing.Size(428, 266); this.ClientSize = new System.Drawing.Size(428, 332);
this.Controls.Add(this.AutoCheckForUpdates); this.Controls.Add(this.AutoCheckForUpdates);
this.Controls.Add(this.OtherOptions); this.Controls.Add(this.OtherOptions);
this.Controls.Add(this.ProfileOptionsLabel); this.Controls.Add(this.ProfileOptionsLabel);

View File

@ -121,11 +121,12 @@
<value>Options: <value>Options:
Casual Gaming - All about performance! Casual Gaming - All about performance!
Tool-Assisted Speedruns - Maximum Accuracy! Longplays - Stability is the key!
N64 Tool-assisted Speedruns - Identical to Tool Tool-Assisted Speedruns (TAS) - Maximum Accuracy!
Assisted Speedruns but with additional N64 specific settings.
Longplays - Stability is the key!</value> N64 Tool-assisted Speedruns - Same as TAS above but with additional N64 specific settings. NOTE: With this profile, frame advance also skips non-input (lag) frames. This can optionally be disabled under Config-&gt;Customize-&gt;Advanced.
</value>
</data> </data>
</root> </root>