~ubuntu-branches/ubuntu/jaunty/openarena/jaunty

« back to all changes in this revision

Viewing changes to code/renderer/tr_light.c

  • Committer: Bazaar Package Importer
  • Author(s): Bruno "Fuddl" Kleinert, Bruno "Fuddl" Kleinert
  • Date: 2008-04-24 14:33:54 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080424143354-0cuxsalv98ajw2js
Tags: 0.7.6-1
[ Bruno "Fuddl" Kleinert ]
* New upstream release
* Freshen 10_fix_build_and_binary_on_alpha.dpatch to apply to latest
  upstream sources
* Remove 10-fix_menudef.h_includes.dpatch which pulled in a missing header
  file. The header is now included in the upstream tarball.
* Remove debian/watch, because upstream places its new releases too often to
  different download locations
* Updated debian/copyright to reflect the download location
* Expand copyright years in debian/copyright

Show diffs side-by-side

added added

removed removed

Lines of Context:
160
160
        VectorClear( ent->directedLight );
161
161
        VectorClear( direction );
162
162
 
163
 
        assert( tr.world->lightGridData ); // bk010103 - NULL with -nolight maps
 
163
        assert( tr.world->lightGridData ); // NULL with -nolight maps
164
164
 
165
165
        // trilerp the light value
166
166
        gridStep[0] = 8;
380
380
{
381
381
        trRefEntity_t ent;
382
382
        
383
 
        // bk010103 - this segfaults with -nolight maps
384
383
        if ( tr.world->lightGridData == NULL )
385
384
          return qfalse;
386
385