New font definition files for qMax <qwiglydee@gmail.com>'s font patch
[supertux.git] / src / main.hpp
index e64b01f..4a79a80 100644 (file)
 void init_video();
 void wait_for_event(float min_delay, float max_delay);
 
-/// The width of the display (this is a logical value, not the physical value)
+/** The width of the display (this is a logical value, not the
+    physical value, since aspect_ration and projection_area might
+    shrink or scale things) */
 extern int SCREEN_WIDTH;
-/// The height of the display (this is a logical value, not the physical value)
+
+/** The width of the display (this is a logical value, not the
+    physical value, since aspect_ration and projection_area might
+    shrink or scale things) */
 extern int SCREEN_HEIGHT;
 
 // global variables
-class JoystickKeyboardController;
+class  JoystickKeyboardController;
 extern JoystickKeyboardController* main_controller;
 
 #endif