Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ If this updated feature set doesn't suit your needs, you can of course still get
* 64 Marios (Must be super)
* Marios must be American, Japanese or PAL

STROOP can run under Wine, but requires additional setup:

* The "Microsoft Sans Serif" font must be installed (`winetricks micross`)

## Building

Requirements:
Expand Down
3 changes: 3 additions & 0 deletions STROOP/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using STROOP.Forms;
using System;
using System.Drawing;
using System.IO;
using System.Reflection;
using System.Windows.Forms;
using STROOP.Structs;
Expand Down Expand Up @@ -31,6 +32,8 @@ public static bool IsVisualStudioHostProcess()
[STAThread]
static void Main()
{
Directory.SetCurrentDirectory(AppContext.BaseDirectory);

// This is necessary to keep the scale of controls in check after migrating from .NET Framework WinForms to .NET8 WinForms LOL
Application.SetDefaultFont(new Font(new FontFamily("Microsoft Sans Serif"), 8.25F));

Expand Down
Loading