fix value

This commit is contained in:
thhoang99 2016-11-02 21:03:04 +07:00
parent f55a410c48
commit d6051867d4
2 changed files with 19 additions and 14 deletions

25
UI2.c
View File

@ -25,6 +25,21 @@
#include "audio/vita_audio.h"
bool Change_UI = false;
bool touch_nothing = false;
int length_row_items = 7;
float length_border = 5.0f;
float width_item = 0;
float height_item = 0;
float ani_extend_bg_up = 0;
int MAX_NAME_WIDTH_TILE = 0;
float max_extend_item_value = 10;
int animate_extend_item = 0;
int animate_extend_item_pos = 0;
static int _newlib_heap_size_user = 128 * 1024 * 1024;
#define MAX_DIR_LEVELS 1024
@ -1338,16 +1353,6 @@ static int dialogSteps() {
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////
bool Change_UI = false;
bool touch_nothing = false;
float ani_extend_bg_up = 0;
int MAX_NAME_WIDTH_TILE = 0;
float max_extend_item_value = 10;
int animate_extend_item = 0;
int animate_extend_item_pos = 0;
//notification value
float slide_value_notification = HEIGHT_TITLE_BAR;
bool notification_open = false;

8
UI2.h
View File

@ -89,10 +89,10 @@ extern vita2d_texture *zip_file_image, *txt_file_image, *title_bar_bg_image, *up
extern bool Change_UI;
int length_row_items = 7;
float length_border = 5.0f;
float width_item = 0;
float height_item = 0;
extern int length_row_items;
extern float length_border;
extern float width_item;
extern float height_item;
int UI2();