Refactored input system for Windows version
This commit is contained in:
parent
2d4f8eb7bd
commit
bfbea5c398
|
@ -827,20 +827,21 @@ int main(int argc,char *argv[])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (!InitDInput())
|
||||||
|
{
|
||||||
|
do_exit();
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!DriverInitialize())
|
||||||
|
{
|
||||||
|
do_exit();
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
CreateMainWindow();
|
CreateMainWindow();
|
||||||
|
|
||||||
if(!InitDInput())
|
|
||||||
{
|
|
||||||
do_exit();
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if(!DriverInitialize())
|
|
||||||
{
|
|
||||||
do_exit();
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
debugSystem = new DebugSystem();
|
debugSystem = new DebugSystem();
|
||||||
debugSystem->init();
|
debugSystem->init();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue