From 5267e69c48f07aa4c9572071a6a49a8e696dccec Mon Sep 17 00:00:00 2001 From: Paul Sladen Date: Thu, 28 May 2009 07:34:53 +0300 Subject: [PATCH] * Make dropping out of full-screen *very* first priority --- debian/changelog | 1 + openBVE/OpenBve/Program.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletions(-) diff --git a/debian/changelog b/debian/changelog index c75a599..4e3238c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ openbve (1.0.6.0-0ubuntu1) unreleased; urgency=low * New upstream version (1.0.6.0) + * Make dropping out of full-screen *very* first priority -- Paul Sladen Thu, 28 May 2009 06:53:10 +0000 diff --git a/openBVE/OpenBve/Program.cs b/openBVE/OpenBve/Program.cs index 8446fae..8b95ea8 100644 --- a/openBVE/OpenBve/Program.cs +++ b/openBVE/OpenBve/Program.cs @@ -63,10 +63,10 @@ namespace OpenBve { } #endif // deinitialize - TextureManager.UnuseAllTextures(); if(SdlWindowCreated & Interface.CurrentOptions.FullscreenMode) { Sdl.SDL_SetVideoMode(Interface.CurrentOptions.WindowWidth, Interface.CurrentOptions.WindowHeight, 32, Sdl.SDL_OPENGL | Sdl.SDL_DOUBLEBUF); } + TextureManager.UnuseAllTextures(); Asynchronous.Deinitialize(); PluginManager.UnloadPlugin(); SoundManager.Deinitialize(); -- 1.6.0.4