PCem
changeset 59:76baf8ee183e
Updated version number to v8.
| author | TomW |
|---|---|
| date | Sat Dec 21 09:55:49 2013 +0000 |
| parents | 3d61df288124 |
| children | a039bc6ad4d4 |
| files | src/pc.c src/vid_icd2061.c src/win-d3d-fs.cc src/win.c |
| diffstat | 4 files changed, 6 insertions(+), 4 deletions(-) [+] |
line diff
1.1 --- a/src/pc.c Sat Dec 21 08:01:31 2013 +0000 1.2 +++ b/src/pc.c Sat Dec 21 09:55:49 2013 +0000 1.3 @@ -58,6 +58,7 @@ 1.4 FILE *pclogf; 1.5 void pclog(const char *format, ...) 1.6 { 1.7 +#ifndef RELEASE_BUILD 1.8 char buf[1024]; 1.9 //return; 1.10 if (!pclogf) 1.11 @@ -69,6 +70,7 @@ 1.12 va_end(ap); 1.13 fputs(buf,pclogf); 1.14 fflush(pclogf); 1.15 +#endif 1.16 } 1.17 1.18 void fatal(const char *format, ...) 1.19 @@ -351,7 +353,7 @@ 1.20 if (win_title_update) 1.21 { 1.22 win_title_update=0; 1.23 - sprintf(s, "PCem v0.7 - %s - %s - %s - %i%%", model_getname(), models[model].cpu[cpu_manufacturer].cpus[cpu].name, (!mousecapture) ? "Click to capture mouse" : "Press CTRL-END to release mouse", fps); 1.24 + sprintf(s, "PCem v8 - %s - %s - %s - %i%%", model_getname(), models[model].cpu[cpu_manufacturer].cpus[cpu].name, (!mousecapture) ? "Click to capture mouse" : "Press CTRL-END to release mouse", fps); 1.25 set_window_title(s); 1.26 } 1.27 done++;
2.1 --- a/src/vid_icd2061.c Sat Dec 21 08:01:31 2013 +0000 2.2 +++ b/src/vid_icd2061.c Sat Dec 21 09:55:49 2013 +0000 2.3 @@ -1,4 +1,4 @@ 2.4 -/*PCem v0.7 by Tom Walker 2.5 +/*PCem v8 by Tom Walker 2.6 2.7 ICD2061 clock generator emulation 2.8 Used by ET4000w32/p (Diamond Stealth 32)*/
3.1 --- a/src/win-d3d-fs.cc Sat Dec 21 08:01:31 2013 +0000 3.2 +++ b/src/win-d3d-fs.cc Sat Dec 21 09:55:49 2013 +0000 3.3 @@ -86,7 +86,7 @@ 3.4 d3d_device_window = CreateWindowEx ( 3.5 0, 3.6 szSubClassName, 3.7 - "PCem v0.7", 3.8 + "PCem v8", 3.9 WS_POPUP, 3.10 CW_USEDEFAULT, 3.11 CW_USEDEFAULT,
4.1 --- a/src/win.c Sat Dec 21 08:01:31 2013 +0000 4.2 +++ b/src/win.c Sat Dec 21 09:55:49 2013 +0000 4.3 @@ -307,7 +307,7 @@ 4.4 hwnd = CreateWindowEx ( 4.5 0, /* Extended possibilites for variation */ 4.6 szClassName, /* Classname */ 4.7 - "PCem v0.7", /* Title Text */ 4.8 + "PCem v8", /* Title Text */ 4.9 WS_OVERLAPPEDWINDOW&~WS_SIZEBOX, /* default window */ 4.10 CW_USEDEFAULT, /* Windows decides the position */ 4.11 CW_USEDEFAULT, /* where the window ends up on the screen */
