changeset 4743:f25518de3ee5

Fixed window title (from GLTSF to GLIMM).
author dewyatt
date Sun, 04 Jul 2010 06:15:42 -0400
parents 59b0750575b1
children 34c3e6d69575
files EXCLUDE/GLIMM/src/App.cpp
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/EXCLUDE/GLIMM/src/App.cpp	Sun Jul 04 06:07:38 2010 -0400
+++ b/EXCLUDE/GLIMM/src/App.cpp	Sun Jul 04 06:15:42 2010 -0400
@@ -20,7 +20,7 @@
 {
 	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 @@
 	case VK_ESCAPE:
 		On_Close();
 		break;
+	case VK_TAB:
+		my_Window.Get_IMM().Toggle();
+		break;
 	}
 }