<html>
<body>
  <div id="body" style="background-color:#ffffff;" >
<table cellspacing="0" cellpadding="0" border="0" rules="cols">
<tr class="head" style="border-bottom-width:1px;border-bottom-style:solid;" ><td class="headtd" style="padding:0;padding-top:.2em;" colspan="4">Commit in <b><tt>lxdream/src</tt></b></td></tr>
<tr><td><tt><a href="#file1">gui_android.c</a></tt></td><td id="added" class="headtd2" style="padding-left:.3em;padding-right:.3em; background-color:#ddffdd;" align="right">+13</td><td></td><td class="headtd2" style="padding-left:.3em;padding-right:.3em;" nowrap="nowrap">2fb29172ee79 -> 5aa14eeaad5a</td></tr>
</table>
<pre class="comment" style="white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;white-space:pre-wrap;word-wrap:break-word;padding:4px;border:1px dashed #000000;background-color:#ffffdd;" >
Load previous GD-ROM on startup
</pre>
<hr /><a name="file1" /><div class="file" style="border:1px solid #eeeeee;margin-top:1em;margin-bottom:1em;" >
<span class="pathname" style="font-family:monospace; float:right;" >lxdream/src</span><br />
<div class="fileheader" style="margin-bottom:.5em;" ><big><b>gui_android.c</b></big> <small id="info" style="color: #888888;" >2fb29172ee79 -> 5aa14eeaad5a</small></div>
<pre class="diff" style="margin:0;" ><small id="info" style="color: #888888;" >--- lxdream/src/gui_android.c
+++ lxdream/src/gui_android.c
@@ -235,6 +235,19 @@
</small></pre><pre id="context" class="diff" style="margin:0; background-color:#eeeeee;" >     hotkeys_init();
     serial_init();
     maple_reattach_all();
</pre><pre id="added" class="diff" style="margin:0; background-color:#ddffdd;" >+
+    ERROR err;
+    gchar *disc_file = lxdream_get_global_config_path_value( CONFIG_GDROM );
+    if( disc_file != NULL ) {
+        gboolean ok = gdrom_mount_image( disc_file, &err );
+        g_free(disc_file);
+        if( !ok ) {
+            WARN( err.msg );
+        } else {
+            INFO( "Mounted %s", disc_file );
+        }
+    }
+
</pre><pre id="context" class="diff" style="margin:0; background-color:#eeeeee;" >     INFO( "%s! ready...", APP_NAME );
     android_start_thread();
 }
</pre></div>
<center><small>Chaos Theory</small></center>
</div></body></html>