@@ -6,40 +6,40 @@ y1 = floor(window_height / 2 - 210)
66draw_window (x1, y1, x1 + 700 , y1 + 430 )
77draw_sprite(spr_logo, 0 , x1 + 64 , y1 + 64 )
88draw_set_font(fnt_info_med_bold)
9- draw_text_center(x1 + 132 , y1 + 215 , " Open Minecraft Note Block Studio" )
9+ draw_text_center(x1 + 132 , y1 + 213 , " Open Minecraft Note Block Studio" )
1010draw_set_font(fnt_mainbold)
1111if (check_update) {
1212 if (update = -1 ) {
1313 draw_set_color (c_red)
14- draw_text_center (x1 + 132 , y1 + 246 , " Could not check for updates" )
14+ draw_text_center (x1 + 132 , y1 + 248 , " Could not check for updates" )
1515 }
1616 if (update = 0 ) {
1717 // draw_set_color(c_gray)
18- draw_text_center (x1 + 132 , y1 + 246 , " Checking for updates..." )
18+ draw_text_center (x1 + 132 , y1 + 248 , " Checking for updates..." )
1919 }
2020 if (update = 1 ) {
2121 draw_set_color (33023 )
22- draw_text_center (x1 + 132 , y1 + 246 , " There is an update available!" )
22+ draw_text_center (x1 + 132 , y1 + 248 , " There is an update available!" )
2323 }
2424 if (update = 2 ) {
2525 draw_set_color (c_green)
26- draw_text_center (x1 + 132 , y1 + 246 , " You are using the latest version!" )
26+ draw_text_center (x1 + 132 , y1 + 248 , " You are using the latest version!" )
2727 }
2828 if (update = 3 ) {
2929 draw_set_color (c_green)
30- draw_text_center (x1 + 132 , y1 + 246 , " Successfully updated!" )
30+ draw_text_center (x1 + 132 , y1 + 248 , " Successfully updated!" )
3131 }
3232} else {
3333 draw_set_color (c_red)
34- draw_text_center (x1 + 132 , y1 + 246 , " Update checking disabled by user" )
34+ draw_text_center (x1 + 132 , y1 + 248 , " Update checking disabled by user" )
3535}
3636draw_set_font (fnt_main)
3737draw_set_color(c_black)
3838draw_text_center(x1 + 132 , y1 + 233 , " Version " + version + " - Released " + version_date)
3939draw_text_center(x1 + 132 , y1 + 280 , " Open source Minecraft Note Block Studio" )
4040draw_set_color(c_blue)
4141draw_text_center(x1 + 132 , y1 + 296 , " www.git.io/fh2fJ" )
42- draw_line(x1 + 90 , y1 + 309 , x1 + 173 , y1 + 309 )
42+ draw_line(x1 + 89 , y1 + 309 , x1 + 173 , y1 + 309 )
4343
4444a = mouse_rectangle(x1 + 90 , y1 + 298 , 85 , 12 )
4545if (a) {
@@ -52,7 +52,7 @@ draw_set_color(c_black)
5252draw_text_center(x1 + 132 , y1 + 340 , " Original created by David Norgren" )
5353draw_set_color(c_blue)
5454draw_text_center(x1 + 132 , y1 + 356 , " www.stuffbydavid.com" )
55- draw_line(x1 + 72 , y1 + 369 , x1 + 190 , y1 + 369 )
55+ draw_line(x1 + 70 , y1 + 369 , x1 + 193 , y1 + 369 )
5656a = mouse_rectangle(x1 + 75 , y1 + 358 , 114 , 12 )
5757if (a) {
5858 curs = cr_handpoint
0 commit comments