dmx: Stop overriding the vendor string

This commit is contained in:
Adam Jackson 2019-10-16 13:42:15 -04:00 committed by Adam Jackson
parent 0e4bd71d02
commit fc671085ee
2 changed files with 2 additions and 4 deletions

View File

@ -67,7 +67,6 @@
((month) * 100) + \
((day) * 1)
#define VENDOR_RELEASE DMX_VENDOR_RELEASE(1,2,2007,4,24)
#define VENDOR_STRING "DMX Project"
/* Enable the DMX extension */
#define DMXEXT

View File

@ -569,11 +569,10 @@ InitOutput(ScreenInfo * pScreenInfo, int argc, char *argv[])
year += 2000;
dmxLog(dmxInfo, "Generation: %lu\n", dmxGeneration);
dmxLog(dmxInfo, "DMX version: %d.%d.%02d%02d%02d (%s)\n",
major, minor, year, month, day, VENDOR_STRING);
dmxLog(dmxInfo, "DMX version: %d.%d.%02d%02d%02d\n",
major, minor, year, month, day);
SetVendorRelease(VENDOR_RELEASE);
SetVendorString(VENDOR_STRING);
dmxLog(dmxInfo, "MAXSCREENS: %d\n", MAXSCREENS);