DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T o

⟦44d53840e⟧ TextFile

    Length: 1015 (0x3f7)
    Types: TextFile
    Names: »ogre.bug«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/General/Ogre/news/ogre.bug« 

TextFile

Article 1433 of net.sources:
Relay-Version: version B 2.10.1 6/24/83 (MC840302); site turing.UUCP
Posting-Version: version B 2.10.2 9/18/84; site brl-tgr.ARPA
Path: turing!mcvax!seismo!brl-tgr!tgr!tim@uci-icsd
From: "Tim Shimeall" <tim@uci-icsd>
Newsgroups: net.sources
Subject: Bug in ogre(6)
Message-ID: <7199@brl-tgr.ARPA>
Date: Fri, 11-Jan-85 02:21:49 GMT
Article-I.D.: brl-tgr.7199
Posted: Fri Jan 11 02:21:49 1985
Date-Received: Sat, 12-Jan-85 03:18:51 GMT
Sender: news@brl-tgr.ARPA
Organization: Ballistic Research Lab
Lines: 15

In the distributed version of ogre(6) answering the question
about how many movement points the CP is given with anything
of ascii value less than '0' will INCREASE the number of armor
units you have.
The following is a "diff" output showing the line that needs to be
fixed, and the fix for it in the file "init.c".
					Tim

227c227,230
< 		j -= '0' ;
---
> 		if (j >= '0' && j <= '9') 
>                     {j -= '0' ;}
>                 else 
>                     j = 0;