Revamped the UI setup layer, which also fixes the VC builds.

This commit is contained in:
waltje
2018-05-03 17:25:04 -04:00
parent 83605c00a5
commit de1818e661
32 changed files with 916 additions and 922 deletions

View File

@@ -8,7 +8,7 @@
*
* Main emulator module where most things are controlled.
*
* Version: @(#)pc.c 1.0.31 2018/04/30
* Version: @(#)pc.c 1.0.32 2018/05/01
*
* Authors: Fred N. van Kempen, <decwiz@yahoo.com>
* Miran Grca, <mgrca8@gmail.com>
@@ -310,6 +310,11 @@ pc_version(const char *platform)
#endif
strcpy(emu_fullversion, emu_version);
#ifdef _MSC_VER
sprintf(temp, " [VC%d]", _MSC_VER);
strcat(emu_fullversion, temp);
#endif
#ifdef BUILD
sprintf(temp, " (Build %d", BUILD);
strcat(emu_fullversion, temp);