Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
m6502 committed Dec 28, 2017
1 parent 8ac9e4c commit a2fb5a1
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
22 changes: 13 additions & 9 deletions program/zt.conf
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,24 @@ latency_Reaktor: 0
bank_Reaktor: No
latency_mks4agb: 0
bank_mks4agb: No
open_out_device_0: loopMIDI Port
open_out_device_1: Reaktor
open_out_device_2: Massive
open_out_device_3: FM8
open_out_device_4: Battery
open_out_device_5: Kontakt
open_out_device_6: Microsoft GS Wavetable Synth
open_out_device_7: Cubase In 0
latency_FMDRIVE: 0
bank_FMDRIVE: No
open_out_device_0: Cubase In 0
open_out_device_1: Microsoft GS Wavetable Synth
open_out_device_2: Kontakt
open_out_device_3: Battery
open_out_device_4: FM8
open_out_device_5: Massive
open_out_device_6: Reaktor
open_out_device_7: loopMIDI Port
open_out_device_8: FMDRIVE
open_out_device_9: mks4agb
screen_width: 1600
screen_height: 1000
control_navigation_amount: 2
default_pattern_length: 64
default_instrument_global_volume: 1363570218
default_highlight_increment: 3
default_highlight_increment: 4
default_lowlight_increment: 1
key_repeat: 30
key_wait: 250
Expand Down
6 changes: 4 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -843,6 +843,8 @@ void status(Drawable *S)


extern int max_displayable_rows ;
extern int g_posx_tracks ;


// ------------------------------------------------------------------------------------------------
//
Expand Down Expand Up @@ -898,7 +900,7 @@ void update_status(Drawable *S)
else line_number_color = COLORS.Text ;

sprintf(str,"%.3d", i) ;
printBG(col(1), row(15+o), str, line_number_color, COLORS.Background, S) ;
printBG(col(g_posx_tracks - 4), row(15+o), str, line_number_color, COLORS.Background, S) ;

o++;
}
Expand All @@ -913,7 +915,7 @@ void update_status(Drawable *S)

status_change = 0;
//updated++;
screenmanager.UpdateWH(col(1), row(15), 3 * FONT_SIZE_X, PATTERN_EDIT_ROWS * FONT_SIZE_Y) ;
screenmanager.UpdateWH(col(g_posx_tracks - 4), row(15), 3 * FONT_SIZE_X, PATTERN_EDIT_ROWS * FONT_SIZE_Y) ;
S->unlock();
}
}
Expand Down

0 comments on commit a2fb5a1

Please sign in to comment.