summaryrefslogtreecommitdiff
path: root/bootloader/gigabeat.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/gigabeat.c')
-rw-r--r--bootloader/gigabeat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bootloader/gigabeat.c b/bootloader/gigabeat.c
index 7a634b329c..cfba4bb38d 100644
--- a/bootloader/gigabeat.c
+++ b/bootloader/gigabeat.c
@@ -181,7 +181,7 @@ void main(void)
181 if(rc) 181 if(rc)
182 { 182 {
183 reset_screen(); 183 reset_screen();
184 error(EATA, rc); 184 error(EATA, rc, true);
185 } 185 }
186 186
187 disk_init(); 187 disk_init();
@@ -189,7 +189,7 @@ void main(void)
189 rc = disk_mount_all(); 189 rc = disk_mount_all();
190 if (rc<=0) 190 if (rc<=0)
191 { 191 {
192 error(EDISK,rc); 192 error(EDISK, rc, true);
193 } 193 }
194 194
195 printf("Loading firmware"); 195 printf("Loading firmware");
@@ -202,7 +202,7 @@ void main(void)
202 202
203 rc = load_firmware(loadbuffer, BOOTFILE, buffer_size); 203 rc = load_firmware(loadbuffer, BOOTFILE, buffer_size);
204 if(rc < 0) 204 if(rc < 0)
205 error(EBOOTFILE, rc); 205 error(EBOOTFILE, rc, true);
206 206
207 storage_close(); 207 storage_close();
208 system_prepare_fw_start(); 208 system_prepare_fw_start();