engine: host: fix crash

This commit is contained in:
Alibek Omarov 2019-12-01 16:19:25 +03:00
parent 6f2b559c5a
commit 077bc7323c

View File

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