Provide better defaults for increments.

This commit is contained in:
Jay Dolan 2018-03-16 14:26:37 -04:00
parent 2daf5a71eb
commit a2082a31bc
1 changed files with 4 additions and 4 deletions

View File

@ -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(){