From a2082a31bcbac6a59030dcf7b605582c7bcb905d Mon Sep 17 00:00:00 2001 From: Jay Dolan Date: Fri, 16 Mar 2018 14:26:37 -0400 Subject: [PATCH] Provide better defaults for increments. --- plugins/surface_idtech2/surfacedialog.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/surface_idtech2/surfacedialog.cpp b/plugins/surface_idtech2/surfacedialog.cpp index 987a6fe4..c85e1bc6 100644 --- a/plugins/surface_idtech2/surfacedialog.cpp +++ b/plugins/surface_idtech2/surfacedialog.cpp @@ -455,12 +455,12 @@ void HideDlg(){ // set default values for increments (shift scale and rot) // this is called by the prefs code if can't find the values void InitDefaultIncrement( texdef_t *tex ){ - tex->SetName( "foo" ); + tex->SetName( "" ); tex->shift[0] = 8; tex->shift[1] = 8; - tex->scale[0] = 0.25; - tex->scale[1] = 0.25; - tex->rotate = 10; + tex->scale[0] = 0.125; + tex->scale[1] = 0.125; + tex->rotate = 5; } void BuildDialog(){