]> Joshua Wise's Git repositories - netwatch.git/commitdiff
Fix parameters for outputf in text.c.
authorJoshua Wise <joshua@rebirth.joshuawise.com>
Mon, 15 Dec 2008 00:26:28 +0000 (19:26 -0500)
committerJoshua Wise <joshua@rebirth.joshuawise.com>
Mon, 15 Dec 2008 00:26:28 +0000 (19:26 -0500)
video/text.c

index c383f133c5038bfd4fd69e2306cac36234e780fd..172b84e002f536d02df4430794190e97ea76f4b5 100644 (file)
@@ -58,7 +58,7 @@ void text_render(char *buf, int x, int y, int w, int h)
        unsigned char ch, at, font;
        smram_state_t old_state = smram_save_state();
        
-       outputf("text_render: (%d,%d),(%d,%d)", buf, x, y, w, h);
+       outputf("text_render: (%d,%d),(%d,%d)", x, y, w, h);
        
        smram_aseg_set_state(SMRAM_ASEG_SMMCODE);
        for (cy = y; cy < (y + h); cy++)
This page took 0.024079 seconds and 4 git commands to generate.