Revamped the UI setup layer, which also fixes the VC builds.
This commit is contained in:
7
src/pc.c
7
src/pc.c
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user