@@ -109,13 +109,13 @@ static void list_modes(GLFWmonitor* monitor)
109
109
glfwGetMonitorName (monitor ),
110
110
glfwGetPrimaryMonitor () == monitor ? "primary" : "secondary" );
111
111
printf ("Current mode: %s\n" , format_mode (mode ));
112
- printf ("Virtual position: %i %i\n" , x , y );
113
- printf ("Content scale: %f %f\n" , xscale , yscale );
112
+ printf ("Virtual position: %i, %i\n" , x , y );
113
+ printf ("Content scale: %f x %f\n" , xscale , yscale );
114
114
115
- printf ("Physical size: %i x %i mm (%0.2f dpi)\n" ,
116
- width_mm , height_mm , mode -> width * 25.4f / width_mm );
117
- printf ("Monitor work area: pos=(%d,%d) size=(%dx%d) \n" ,
118
- workarea_x , workarea_y , workarea_width , workarea_height );
115
+ printf ("Physical size: %i x %i mm (%0.2f dpi at %i x %i )\n" ,
116
+ width_mm , height_mm , mode -> width * 25.4f / width_mm , mode -> width , mode -> height );
117
+ printf ("Monitor work area: %i x %i starting at %i, %i \n" ,
118
+ workarea_width , workarea_height , workarea_x , workarea_y );
119
119
120
120
printf ("Modes:\n" );
121
121
0 commit comments