mirror of https://github.com/OpenTTD/OpenTTD
(svn r24538) -Fix-ish: remove compiler warning about initialization order
parent
f3f4c562ff
commit
d70ecf609c
|
@ -54,9 +54,9 @@ ScriptInstance::ScriptInstance(const char *APIName) :
|
||||||
instance(NULL),
|
instance(NULL),
|
||||||
is_started(false),
|
is_started(false),
|
||||||
is_dead(false),
|
is_dead(false),
|
||||||
is_paused(false),
|
|
||||||
is_save_data_on_stack(false),
|
is_save_data_on_stack(false),
|
||||||
suspend(0),
|
suspend(0),
|
||||||
|
is_paused(false),
|
||||||
callback(NULL)
|
callback(NULL)
|
||||||
{
|
{
|
||||||
this->storage = new ScriptStorage();
|
this->storage = new ScriptStorage();
|
||||||
|
|
Loading…
Reference in New Issue