You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return 0.0, this value is in function show-window then setf'd to monitor-scale of drawing-settings. This makes a lot of width calculations later invalid, due to multiplicating values with 0.0.
e.g. all values folowing function from opengl.lisp get the value 0.0:
(kons-9:run)
crashes after creating the Opengl-Window if monitor scaling setting is below 1.0 (below 100).description
With that monitor scaling setting
return 0.0, this value is in function
show-window
thensetf
'd tomonitor-scale
ofdrawing-settings
. This makes a lot of width calculations later invalid, due to multiplicating values with 0.0.e.g. all values folowing function from
opengl.lisp
get the value 0.0:this eventually makes kons-9 crashing after initial window is created:
proposed fix
replace
with:
in function
show-window
.The text was updated successfully, but these errors were encountered: