Fixed window title (from GLTSF to GLIMM).
This commit is contained in:
parent
6d7e820588
commit
71f0192c59
1 changed files with 4 additions and 1 deletions
|
@ -20,7 +20,7 @@ void App::Initialize()
|
|||
{
|
||||
Finalize();
|
||||
|
||||
my_Window.Initialize(L"GLTSF", Video_Mode(Width, Height, Bits_Per_Pixel), Fullscreen);
|
||||
my_Window.Initialize(L"GLIMM", Video_Mode(Width, Height, Bits_Per_Pixel), Fullscreen);
|
||||
my_Window.Set_Listener(this);
|
||||
my_Window.Show();
|
||||
my_Window.Hide_Cursor();
|
||||
|
@ -57,6 +57,9 @@ void App::On_Key_Down(int Key)
|
|||
case VK_ESCAPE:
|
||||
On_Close();
|
||||
break;
|
||||
case VK_TAB:
|
||||
my_Window.Get_IMM().Toggle();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue