mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-30 20:40:54 +00:00
8bff3c7283
-Remove icon from forms and added it generically to BaseForm (reduces .exe size greatly)
22 lines
357 B
C#
22 lines
357 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Mesen.GUI.Forms
|
|
{
|
|
public class BaseForm : Form
|
|
{
|
|
protected override void OnLoad(EventArgs e)
|
|
{
|
|
base.OnLoad(e);
|
|
|
|
if(!DesignMode) {
|
|
Icon = Properties.Resources.MesenIcon;
|
|
}
|
|
}
|
|
}
|
|
}
|