Skip to content
Snippets Groups Projects
Commit 55b55a98 authored by Rick Parrish's avatar Rick Parrish Committed by Rob Swindell
Browse files

Ree/games fixes

parent 7ad4652b
No related branches found
No related tags found
2 merge requests!463MRC mods by Codefenix (2024-10-20),!230Ree/games fixes
...@@ -25,7 +25,11 @@ ...@@ -25,7 +25,11 @@
?> ?>
<?xjs if (settings.ftelnet_menubar) { ?>
<style>.fTelnetConnectButton { display : none; }</style>
<?xjs } else { ?>
<style>.fTelnetStatusBar { display : none; }</style> <style>.fTelnetStatusBar { display : none; }</style>
<?xjs } ?>
<a name="fTelnet"></a> <a name="fTelnet"></a>
<div id="fTelnetContainer" class="fTelnetContainer" style="margin-bottom:1em;"></div> <div id="fTelnetContainer" class="fTelnetContainer" style="margin-bottom:1em;"></div>
...@@ -86,8 +90,15 @@ ...@@ -86,8 +90,15 @@
$(a).text(xx.n); $(a).text(xx.n);
$(a).click(function (evt) { $(a).click(function (evt) {
if (xx.c.toLowerCase() === 'msweeper') { if (xx.c.toLowerCase() === 'msweeper') {
// Resize client to support a level 5 game of minesweeper // Resize client to support a level 5 game of minesweeper, if necessary
fTelnet.Crt.SetScreenSize(80, 35); if (fTelnet.Crt.ScreenRows < 35) {
// Switch to 80x35, which fits a full level 5.0 game
fTelnet.Crt.SetScreenSize(80, 35);
// Call SetFont, which will switch to a smaller font if the new 35 row
// client is too tall for the browser window
fTelnet.Crt.SetFont(fTelnet.Crt.Font.Name);
}
} }
launchXtrn(xx.c); launchXtrn(xx.c);
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment