Update version number to v12.
Update readme for v12 release.
This commit is contained in:
parent
3434215249
commit
2a76cb5e5c
4 changed files with 126 additions and 154 deletions
2
src/pc.c
2
src/pc.c
|
|
@ -500,7 +500,7 @@ void runpc()
|
|||
if (win_title_update)
|
||||
{
|
||||
win_title_update=0;
|
||||
sprintf(s, "PCem v11 - %i%% - %s - %s - %s", fps, model_getname(), models[model].cpu[cpu_manufacturer].cpus[cpu].name, (!mousecapture) ? "Click to capture mouse" : ((mouse_get_type(mouse_type) & MOUSE_TYPE_3BUTTON) ? "Press CTRL-END to release mouse" : "Press CTRL-END or middle button to release mouse"));
|
||||
sprintf(s, "PCem v12 - %i%% - %s - %s - %s", fps, model_getname(), models[model].cpu[cpu_manufacturer].cpus[cpu].name, (!mousecapture) ? "Click to capture mouse" : ((mouse_get_type(mouse_type) & MOUSE_TYPE_3BUTTON) ? "Press CTRL-END to release mouse" : "Press CTRL-END or middle button to release mouse"));
|
||||
set_window_title(s);
|
||||
}
|
||||
done++;
|
||||
|
|
|
|||
|
|
@ -88,7 +88,7 @@ void d3d_fs_init(HWND h)
|
|||
d3d_device_window = CreateWindowEx (
|
||||
0,
|
||||
szSubClassName,
|
||||
"PCem v11",
|
||||
"PCem v12",
|
||||
WS_POPUP,
|
||||
CW_USEDEFAULT,
|
||||
CW_USEDEFAULT,
|
||||
|
|
|
|||
|
|
@ -516,7 +516,7 @@ int WINAPI WinMain (HINSTANCE hThisInstance,
|
|||
hwnd = CreateWindowEx (
|
||||
0, /* Extended possibilites for variation */
|
||||
szClassName, /* Classname */
|
||||
"PCem v11", /* Title Text */
|
||||
"PCem v12", /* 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