From 7d87a666fefe5a21fedd86279e46074ab71ea580 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 11 Jan 2003 03:56:24 +0000 Subject: [PATCH] reload textures, too --- stepmania/src/ScreenTestFonts.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/stepmania/src/ScreenTestFonts.cpp b/stepmania/src/ScreenTestFonts.cpp index b116330b0f..96f02e8588 100644 --- a/stepmania/src/ScreenTestFonts.cpp +++ b/stepmania/src/ScreenTestFonts.cpp @@ -2,6 +2,7 @@ #include "ScreenTestFonts.h" #include "FontManager.h" +#include "RageTextureManager.h" static const float LineWidth = 400; static const float LineHeight = 50; @@ -79,7 +80,10 @@ void ScreenTestFonts::Input( const DeviceInput& DeviceI, const InputEventType ty case 'e': SetFont( "Themes/default/Fonts/Normal" ); break; case 'r': SetFont( "Themes/SMMAX2/Fonts/titlemenu" ); break; - case 'z': FONT->ReloadFonts(); SetText(curtext); break; + case 'z': FONT->ReloadFonts(); + TEXTUREMAN->ReloadAll(); + SetText(curtext); + break; } }