Commit 71f0192c authored by dewyatt's avatar dewyatt

Fixed window title (from GLTSF to GLIMM).

parent 6d7e8205
...@@ -20,7 +20,7 @@ void App::Initialize() ...@@ -20,7 +20,7 @@ void App::Initialize()
{ {
Finalize(); 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.Set_Listener(this);
my_Window.Show(); my_Window.Show();
my_Window.Hide_Cursor(); my_Window.Hide_Cursor();
...@@ -57,6 +57,9 @@ void App::On_Key_Down(int Key) ...@@ -57,6 +57,9 @@ void App::On_Key_Down(int Key)
case VK_ESCAPE: case VK_ESCAPE:
On_Close(); On_Close();
break; break;
case VK_TAB:
my_Window.Get_IMM().Toggle();
break;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment