@@ -690,18 +690,18 @@ void info_xml_creator::output_display(device_t &device, const char *root_tag)
690690 {
691691 astring newtag (screendev -> tag ()), oldtag (":");
692692 newtag .substr (newtag .find (oldtag .cat (root_tag )) + oldtag .len ());
693-
693+
694694 fprintf (m_output , "\t\t<display" );
695695 fprintf (m_output , " tag=\"%s\"" , xml_normalize_string (newtag ));
696-
696+
697697 switch (screendev -> screen_type ())
698698 {
699699 case SCREEN_TYPE_RASTER : fprintf (m_output , " type=\"raster\"" ); break ;
700700 case SCREEN_TYPE_VECTOR : fprintf (m_output , " type=\"vector\"" ); break ;
701701 case SCREEN_TYPE_LCD : fprintf (m_output , " type=\"lcd\"" ); break ;
702702 default : fprintf (m_output , " type=\"unknown\"" ); break ;
703703 }
704-
704+
705705 // output the orientation as a string
706706 switch (m_drivlist .driver ().flags & ORIENTATION_MASK )
707707 {
@@ -730,24 +730,24 @@ void info_xml_creator::output_display(device_t &device, const char *root_tag)
730730 fprintf (m_output , " rotate=\"0\"" );
731731 break ;
732732 }
733-
733+
734734 // output width and height only for games that are not vector
735735 if (screendev -> screen_type () != SCREEN_TYPE_VECTOR )
736736 {
737737 const rectangle & visarea = screendev -> visible_area ();
738738 fprintf (m_output , " width=\"%d\"" , visarea .width ());
739739 fprintf (m_output , " height=\"%d\"" , visarea .height ());
740740 }
741-
741+
742742 // output refresh rate
743743 fprintf (m_output , " refresh=\"%f\"" , ATTOSECONDS_TO_HZ (screendev -> refresh_attoseconds ()));
744-
744+
745745 // output raw video parameters only for games that are not vector
746746 // and had raw parameters specified
747747 if (screendev -> screen_type () != SCREEN_TYPE_VECTOR && !screendev -> oldstyle_vblank_supplied ())
748748 {
749749 int pixclock = screendev -> width () * screendev -> height () * ATTOSECONDS_TO_HZ (screendev -> refresh_attoseconds ());
750-
750+
751751 fprintf (m_output , " pixclock=\"%d\"" , pixclock );
752752 fprintf (m_output , " htotal=\"%d\"" , screendev -> width ());
753753 fprintf (m_output , " hbend=\"%d\"" , screendev -> visible_area ().min_x );
0 commit comments