Corrected strange formatting of function starts.
authorDavid Griffith <dave@661.org>
Thu, 25 May 2023 19:57:17 +0000 (12:57 -0700)
committerDavid Griffith <dave@661.org>
Thu, 25 May 2023 19:57:17 +0000 (12:57 -0700)
src/dos/dosinit.c
src/dos/dosscrn.c

index 1b38ffcdd1839e44628f322373c8128ea8a32650..d7ea44d8661dcc95df6d091342ae063e691f9f9f 100644 (file)
@@ -525,7 +525,8 @@ static void standard_palette(void)
  * Set palette register #i to value i and call VGA BIOS to use DAC
  * registers #64 to #127.
  *
- */ static void special_palette(void)
+ */
+static void special_palette(void)
 {
 
        static byte palette[] = {
@@ -578,7 +579,8 @@ static void standard_palette(void)
  * Finally, set reserve_mem to the amount of memory (in bytes) that
  * should not be used for multiple undo and reserved for later use.
  *
- */ void os_init_screen(void)
+ */
+void os_init_screen(void)
 {
        static byte zcolour[] = {
                BLACK_COLOUR,
index 99eb6159f10568a0029e382121f1aa5b63b240ff..3381ed76b6cc091d6eb494424d608fa3b41f4557 100644 (file)
@@ -84,7 +84,8 @@ static void clear_byte(volatile byte _far * scrn, word mask)
  *
  * Helper function for os_erase_area.
  *
- */ static void clear_line(int y, int left, int right)
+ */
+static void clear_line(int y, int left, int right)
 {
        volatile byte _far *scrn = get_scrnptr(y);
        if (display == _MCGA_)