mirror of
https://github.com/HistacomUnity/Histacom2-old.git
synced 2025-01-22 09:02:01 -05:00
Fix bug where the Online Services on Windows 98 would break Histacom (see issue #3)
This commit is contained in:
parent
b2184ed7e6
commit
8a8a895afa
2 changed files with 5 additions and 3 deletions
|
@ -291,7 +291,7 @@ private void desktopicons_DoubleClick(object sender, EventArgs e)
|
||||||
//wm.StartInfobox95("Win32 Application", "That is not a valid Win32 Application.", Properties.Resources.Win95Error);
|
//wm.StartInfobox95("Win32 Application", "That is not a valid Win32 Application.", Properties.Resources.Win95Error);
|
||||||
break;
|
break;
|
||||||
case "Online Services":
|
case "Online Services":
|
||||||
wm.StartInfobox95("Caught it!", "If you were to run this, the game would crash!\nLuckily, it won't crash this time!", InfoboxType.Error, InfoboxButtons.OK);
|
wm.StartInfobox95("Online Services", "This feature isn't implemented yet.", InfoboxType.Error, InfoboxButtons.OK);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
// It is an actual file on the disk
|
// It is an actual file on the disk
|
||||||
|
|
|
@ -294,12 +294,14 @@ private void desktopicons_DoubleClick(object sender, EventArgs e)
|
||||||
else if (objListViewItem.Text == "Network Neighborhood")
|
else if (objListViewItem.Text == "Network Neighborhood")
|
||||||
{
|
{
|
||||||
// Alex's TODO here
|
// Alex's TODO here
|
||||||
|
|
||||||
}
|
}
|
||||||
else if (objListViewItem.Text == "Recycle Bin")
|
else if (objListViewItem.Text == "Recycle Bin")
|
||||||
{
|
{
|
||||||
// Another thing you may need to digital poke Alex about doing.
|
// Another thing you may need to digital poke Alex about doing.
|
||||||
|
}
|
||||||
|
else if (objListViewItem.Text == "Online Services")
|
||||||
|
{
|
||||||
|
wm.StartInfobox95("Online Services", "This feature isn't implemented yet.", InfoboxType.Error, InfoboxButtons.OK);
|
||||||
}
|
}
|
||||||
else if (objListViewItem.Text == "Set Up The Microsoft Network")
|
else if (objListViewItem.Text == "Set Up The Microsoft Network")
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue