Skip to content

Commit 6c64de5

Browse files
committed
Temporarily remove OGG export
1 parent 514ae8b commit 6c64de5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

scripts/draw_window_audio_export/draw_window_audio_export.gml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function draw_window_mp3_export() {
3737
if (draw_abutton(x1 + 140 - 18, y1 + 1)) {
3838
var outputstr = check(audio_exp_format == format_mp3) + format_mp3 + "|" +
3939
check(audio_exp_format == format_wav) + format_wav + "|" +
40-
check(audio_exp_format == format_ogg) + format_ogg + "|" +
40+
//check(audio_exp_format == format_ogg) + format_ogg + "|" +
4141
check(audio_exp_format == format_aiff) + format_aiff + "|" +
4242
check(audio_exp_format == format_flac) + format_flac;
4343
menu = show_menu_ext("audio_exp_format", x1, y1, outputstr)

scripts/menu_click/menu_click.gml

+4-4
Original file line numberDiff line numberDiff line change
@@ -359,13 +359,13 @@ function menu_click(argument0) {
359359
case 1:
360360
audio_exp_format = "WAV";
361361
break;
362+
//case 2:
363+
// audio_exp_format = "OGG";
364+
// break;
362365
case 2:
363-
audio_exp_format = "OGG";
364-
break;
365-
case 3:
366366
audio_exp_format = "AIFF";
367367
break;
368-
case 4:
368+
case 3:
369369
audio_exp_format = "FLAC";
370370
break;
371371
}

0 commit comments

Comments
 (0)