Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed window title (from GLTSF to GLIMM).
Browse files Browse the repository at this point in the history
  • Loading branch information
dewyatt committed Jul 4, 2010
1 parent 7cdf7fd commit 0c80073
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion EXCLUDE/GLIMM/src/App.cpp
Expand Up @@ -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();
Expand Down Expand Up @@ -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;
}
}

Expand Down

0 comments on commit 0c80073

Please sign in to comment.