diff --git a/Examples/GT2Minimal/minimal.lpr b/Examples/GT2Minimal/minimal.lpr index c3c802a..8dd92eb 100644 --- a/Examples/GT2Minimal/minimal.lpr +++ b/Examples/GT2Minimal/minimal.lpr @@ -66,12 +66,12 @@ procedure bclicked(widget : PGtkWidget; data : gpointer); cdecl; ExitCode := cef_execute_process(@MainArgs, nil, nil); If ExitCode >= 0 then Halt(ExitCode); - Settings.multi_threaded_message_loop := False; - Settings.single_process := False; + Settings.multi_threaded_message_loop := Ord(False); + Settings.single_process := Ord(False); Settings.context_safety_implementation := 0; Settings.log_severity := LOGSEVERITY_INFO; Settings.uncaught_exception_stack_size := 20; - Settings.release_dcheck_enabled := TRUE; + Settings.release_dcheck_enabled := Ord(True); cef_initialize(@MainArgs, @Settings, nil, nil);