Mercurial > mm7
diff NewUI/MainMenu.cpp @ 1980:c1c74df0a33e
changing most of auto types to their actual types
author | Grumpy7 |
---|---|
date | Wed, 30 Oct 2013 00:47:37 -0700 |
parents | b6252811663d |
children | aff7a7b072b7 |
line wrap: on
line diff
--- a/NewUI/MainMenu.cpp Mon Oct 28 22:16:42 2013 -0700 +++ b/NewUI/MainMenu.cpp Wed Oct 30 00:47:37 2013 -0700 @@ -28,14 +28,14 @@ bool MainMenuWindow::Initialize() { - auto background_texture = new RGBTexture; + RGBTexture* background_texture = new RGBTexture; background_texture->Load("mm6title.pcx", 0); return true; } MainMenuWindow *MainMenuWindow::Create() { - auto window = new MainMenuWindow; + MainMenuWindow* window = new MainMenuWindow; if (window) if (!window->Initialize()) {