KFM 0.47i - if "/hd" read error for start then use "/rd"

git-svn-id: svn://kolibrios.org@4400 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Marat Zakiyanov (Mario79) 2013-12-24 01:13:58 +00:00
parent 3ecc7bbaa0
commit 4416ddc028
2 changed files with 13 additions and 2 deletions

View File

@ -25,7 +25,7 @@
; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
;*****************************************************************************
; KFM v0.47h 11/12/2013
; KFM v0.47i 24/12/2013
;---------------------------------------------------------------------
use32
org 0x0
@ -96,12 +96,23 @@ START:
call proc_read_left_folder
test eax,eax
jz @f
cmp eax,6
jne read_folder_error
@@:
call proc_read_right_folder
test eax,eax
jz @f
cmp eax,6
je @f
; if /hd read error for start then use /rd
mov esi,retrieved_devices_table+1
call copy_folder_name_1
call proc_read_right_folder
test eax,eax
jz @f
cmp eax,6
jne read_folder_1_error
@@:

View File

@ -1,4 +1,4 @@
header_text db 'Kolibri File Manager v0.47h 11/12/2013',0
header_text db 'Kolibri File Manager v0.47i 24/12/2013',0
;---------------------------------------------------------------------
fbutton_name:
.f1 db '1 Help',0