src/newgrf_cargo.cpp
branchgamebalance
changeset 9907 3b068c3a1c74
parent 9906 6f41b8713b65
child 6719 4cc327ad39d5
child 6956 0d884da2fd1c
equal deleted inserted replaced
9906:6f41b8713b65 9907:3b068c3a1c74
     1 /* $Id$ */
     1 /* $Id$ */
     2 
     2 
     3 #include "stdafx.h"
     3 #include "stdafx.h"
     4 #include "openttd.h"
     4 #include "openttd.h"
       
     5 #include "debug.h"
     5 #include "cargotype.h"
     6 #include "cargotype.h"
     6 #include "newgrf.h"
     7 #include "newgrf.h"
     7 #include "newgrf_callbacks.h"
     8 #include "newgrf_callbacks.h"
     8 #include "newgrf_spritegroup.h"
     9 #include "newgrf_spritegroup.h"
     9 #include "newgrf_cargo.h"
    10 #include "newgrf_cargo.h"
    27 }
    28 }
    28 
    29 
    29 
    30 
    30 static uint32 CargoGetVariable(const ResolverObject *object, byte variable, byte parameter, bool *available)
    31 static uint32 CargoGetVariable(const ResolverObject *object, byte variable, byte parameter, bool *available)
    31 {
    32 {
       
    33 	DEBUG(grf, 1, "Unhandled cargo property 0x%X", variable);
       
    34 
    32 	*available = false;
    35 	*available = false;
    33 	return 0;
    36 	return 0;
    34 }
    37 }
    35 
    38 
    36 
    39