]> Shamusworld >> Repos - rmac/blobdiff - rmac.c
Fix for bad division in expressions. Thanks to A. Seed for reporting!
[rmac] / rmac.c
diff --git a/rmac.c b/rmac.c
index b2b2610d62c96bfaeef2da0feda1851b03329664..ae44c750ded296248692f0a833cc478d45e4bf70 100644 (file)
--- a/rmac.c
+++ b/rmac.c
@@ -3,7 +3,7 @@
 // RMAC.C - Main Application Code
 // Copyright (C) 199x Landon Dyer, 2011 Reboot and Friends
 // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986
-// Source Utilised with the Kind Permission of Landon Dyer
+// Source utilised with the kind permission of Landon Dyer
 //
 
 #include "rmac.h"
@@ -150,7 +150,7 @@ void DisplayHelp(void)
 void DisplayVersion(void)
 {
        printf("\nReboot's Macro Assembler for Atari Jaguar\n"
-               "Copyright (C) 199x Landon Dyer, 2011 Reboot\n"
+               "Copyright (C) 199x Landon Dyer, 2011-2015 Reboot\n"
                "V%01i.%01i.%01i %s (%s)\n\n", MAJOR, MINOR, PATCH, __DATE__, PLATFORM);
 }