v0.2: Merge TomB improvements

This commit is contained in:
Chips-fr 2015-05-17 07:52:43 +00:00
parent 470ce4e523
commit 422ed334f4
58 changed files with 8539 additions and 3900 deletions

View file

@ -423,11 +423,11 @@ static int getMapping(int customId)
void moveVertical(int value)
{
currprefs.pandora_vertical_offset += value;
if(currprefs.pandora_vertical_offset < -16)
currprefs.pandora_vertical_offset = -16;
else if(currprefs.pandora_vertical_offset > 16)
currprefs.pandora_vertical_offset = 16;
changed_prefs.pandora_vertical_offset += value;
if(changed_prefs.pandora_vertical_offset < -16)
changed_prefs.pandora_vertical_offset = -16;
else if(changed_prefs.pandora_vertical_offset > 16)
changed_prefs.pandora_vertical_offset = 16;
}
void gui_handle_events (void)