Updated version number to v8.1. Updated documentation for bugfix release.
This commit is contained in:
parent
61d987e4f2
commit
aff104977d
5 changed files with 13 additions and 24 deletions
2
src/pc.c
2
src/pc.c
|
|
@ -353,7 +353,7 @@ void runpc()
|
|||
if (win_title_update)
|
||||
{
|
||||
win_title_update=0;
|
||||
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);
|
||||
sprintf(s, "PCem v8.1 - %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);
|
||||
set_window_title(s);
|
||||
}
|
||||
done++;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*PCem v8 by Tom Walker
|
||||
/*PCem v8.1 by Tom Walker
|
||||
|
||||
ICD2061 clock generator emulation
|
||||
Used by ET4000w32/p (Diamond Stealth 32)*/
|
||||
|
|
|
|||
|
|
@ -86,7 +86,7 @@ void d3d_fs_init(HWND h)
|
|||
d3d_device_window = CreateWindowEx (
|
||||
0,
|
||||
szSubClassName,
|
||||
"PCem v8",
|
||||
"PCem v8.1",
|
||||
WS_POPUP,
|
||||
CW_USEDEFAULT,
|
||||
CW_USEDEFAULT,
|
||||
|
|
|
|||
|
|
@ -310,7 +310,7 @@ int WINAPI WinMain (HINSTANCE hThisInstance,
|
|||
hwnd = CreateWindowEx (
|
||||
0, /* Extended possibilites for variation */
|
||||
szClassName, /* Classname */
|
||||
"PCem v8", /* Title Text */
|
||||
"PCem v8.1", /* Title Text */
|
||||
WS_OVERLAPPEDWINDOW&~WS_SIZEBOX, /* default window */
|
||||
CW_USEDEFAULT, /* Windows decides the position */
|
||||
CW_USEDEFAULT, /* where the window ends up on the screen */
|
||||
|
|
|
|||
Loading…
Reference in a new issue