Bugs:Nibbles (DOS)
Please consider supporting The Cutting Room Floor on Patreon. Thanks for all your support!
Bugs:Nibbles (DOS)
From The Cutting Room Floor
Revision as of 05:02, 1 October 2017 by Malvineous (Talk | contribs) (Add 'speed never increases' bug)
This page details bugs of Nibbles (DOS).
Speed never increases
When the game is launched, the player is asked whether the game's speed should increase during play, however this never happens due to a bug. The player is asked to answer yes or no before the game starts, in this block of code:
DO
LOCATE 15, 56: PRINT SPACE$(25);
LOCATE 15, 15
INPUT "Increase game speed during play (Y or N)"; diff$
diff$ = UCASE$(diff$)
LOOP UNTIL diff$ = "Y" OR diff$ = "N"
However later in the game, instead of checking for a Y or N, the game mistakenly checks for a P to see whether the speed should be increased or not.
IF diff$ = "P" THEN speed = speed - 10: curSpeed = speed
Since the player could never enter a P due to the above loop condition, the game's speed will never increase during play, regardless of whether the player requested it or not.
Category:
- Bugs
Games > Games by content > Bugs
if(window.jQuery)jQuery.ready();if(window.mw){
mw.loader.state({"site":"loading","user":"ready","user.groups":"ready"});
}if(window.mw){
mw.loader.load(["mediawiki.action.view.postEdit","mediawiki.user","mediawiki.hidpi","mediawiki.page.ready","mediawiki.searchSuggest","ext.uls.pt"],null,true);
}if(window.mw){
document.write("u003Cscript src="https://tcrf.net/load.php?debug=falseu0026amp;lang=enu0026amp;modules=siteu0026amp;only=scriptsu0026amp;skin=vectoru0026amp;*"u003Eu003C/scriptu003E");
}
var pkBaseURL = (("https:" == document.location.protocol) ? "https://stats.tcrf.net/" : "http://stats.tcrf.net/");
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
try {
var piwikTracker = Piwik.getTracker(pkBaseURL + "piwik.php", 2);
piwikTracker.trackPageView();
piwikTracker.enableLinkTracking();
} catch( err ) {}
if(window.mw){
mw.config.set({"wgBackendResponseTime":168});
}