From 83687000a4576538c8f5b41f678216cc2d14aec4 Mon Sep 17 00:00:00 2001 From: OBattler Date: Mon, 15 Aug 2016 06:50:44 +0200 Subject: [PATCH] Fixed minor bug with the title in win.c. --- src/win.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win.c b/src/win.c index c0c606aaf..121e2993a 100644 --- a/src/win.c +++ b/src/win.c @@ -567,7 +567,7 @@ int WINAPI WinMain (HINSTANCE hThisInstance, hwnd = CreateWindowEx ( 0, /* Extended possibilites for variation */ szClassName, /* Classname */ - emulator_version, /* Title Text */ + emulator_title, /* Title Text */ WS_OVERLAPPEDWINDOW&~WS_SIZEBOX, /* default window */ CW_USEDEFAULT, /* Windows decides the position */ CW_USEDEFAULT, /* where the window ends up on the screen */