engine: host: fix crash

This commit is contained in:
Alibek Omarov 2019-12-01 16:19:25 +03:00
parent 6f2b559c5a
commit 077bc7323c
1 changed files with 1 additions and 1 deletions

View File

@ -654,7 +654,7 @@ Host_Crash_f
*/
static void Host_Crash_f( void )
{
*(int *)0 = 0xffffffff;
*(volatile int *)0 = 0xffffffff;
}
/*