[MKDS] Ask for rom from user provided url.

pull/3/head
RHY3756547 2017-09-08 18:11:08 +01:00
parent 2064315dea
commit ea1053578e
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ window.fileStore = new (function(){
alert("Fatal database error!");
};
request.onsuccess = function(event) {
if (request.result == null) downloadGame("Mario Kart DS.nds", callback);
if (request.result == null) downloadGame(null, callback);
else callback(request.result.data);
};
}