0ad/source/dcdt/se/sr_sa_render_mode.cpp
janwas 5bf9bca9ef fix/disable warnings.
there are too many W4 and "potentially uninitialized", so those are
disabled by 0ad_warning_disable.h.

the silly "int x = strlen" and very dangerous "int x = (void*)p" (and
vice versa) problems are fixed.

This was SVN commit r5526.
2007-12-23 12:18:57 +00:00

25 lines
598 B
C++

#include "precompiled.h"
#include "0ad_warning_disable.h"
//# include <stdlib.h>
# include "sr_sa_render_mode.h"
# include "sr_sn_shape.h"
//# define SR_USE_TRACE1 // constructor / destructor
# include "sr_trace.h"
//=============================== SrSaRenderMode ====================================
bool SrSaRenderMode::shape_apply ( SrSnShapeBase* s )
{
if ( _override )
s->override_render_mode ( _render_mode );
else
s->restore_render_mode ();
return true;
}
//======================================= EOF ====================================