Fix last commit.

This commit is contained in:
UnknownShadow200 2016-07-12 20:15:19 +10:00
parent 7711515aee
commit a9b3c0876e
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@ namespace ClassicalSharp.Renderers {
if( builder != null ) builder.Dispose();
if( game.SmoothLighting )
builder = new SmoothLightingMeshBuilder();
builder = new AdvLightingMeshBuilder();
else
builder = new NormalMeshBuilder();

View file

@ -13,7 +13,7 @@ namespace ClassicalSharp {
float[] soupHeat = new float[Size * Size];
JavaRandom rnd = null;
public unsafe void Tick( int* output ) {
public unsafe void Tick( int* ptr ) {
if( rnd == null )
rnd = new JavaRandom( new Random().Next() );