Fix broken year handling.
Modified: trunk/reactos/boot/freeldr/freeldr/arch/i386/pcrtc.c

Modified: trunk/reactos/boot/freeldr/freeldr/arch/i386/pcrtc.c
--- trunk/reactos/boot/freeldr/freeldr/arch/i386/pcrtc.c	2005-02-03 23:54:02 UTC (rev 13401)
+++ trunk/reactos/boot/freeldr/freeldr/arch/i386/pcrtc.c	2005-02-04 03:21:46 UTC (rev 13402)
@@ -55,7 +55,7 @@
 
       if (NULL != Year)
         {
-          *Year = 100 * BCD_INT(Regs.b.cl) + BCD_INT(Regs.b.ch);
+          *Year = 100 * BCD_INT(Regs.b.ch) + BCD_INT(Regs.b.cl);
         }
       if (NULL != Month)
         {