Fixed misuse of "/rd/1" (changed to "/sys") for all other programs

git-svn-id: svn://kolibrios.org@9587 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
vitalkrilov
2022-01-07 12:42:44 +00:00
parent a8393177c8
commit 46d9482bb0
86 changed files with 148 additions and 148 deletions

View File

@@ -373,14 +373,14 @@ OpenDialog_data:
.y_size dw 320 ;+52 ; Window y size
.y_start dw 10 ;+54 ; Window Y position
default_dir db '/rd/1',0
default_dir db '/sys',0
communication_area_name:
db 'FFFFFFFF_open_dialog',0
open_dialog_name:
db 'opendial',0
communication_area_default_path:
db '/rd/1/File managers/',0
db '/sys/File managers/',0
Filter:
dd Filter.end - Filter ;.1

View File

@@ -537,14 +537,14 @@ OpenDialog_data:
.y_size dw 320 ;+52 ; Window y size
.y_start dw 10 ;+54 ; Window Y position
default_dir db '/rd/1',0
default_dir db '/sys',0
communication_area_name:
db 'FFFFFFFF_open_dialog',0
open_dialog_name:
db 'opendial',0
communication_area_default_path:
db '/rd/1/File managers/',0
db '/sys/File managers/',0
Filter:
dd Filter.end - Filter ;.1

View File

@@ -272,7 +272,7 @@ draw_window:
ret
_f_path db '/rd/1/lib',0
_f_path db '/sys/lib',0
_f_mask db '*ini*',0
;---------------------------------------------------------------------
@@ -281,7 +281,7 @@ _f_mask db '*ini*',0
s_header db 'EXAMPLE APPLICATION',0
s_ini db '/rd/1/test001.ini',0
s_ini db '/sys/test001.ini',0
s_sec db 'Panels',0
s_key db 'param1',0

View File

@@ -135,7 +135,7 @@ draw_window:
align 4
title db 'Press button [Up] and see '
openfile_path db '/rd/1/t1.png',0
openfile_path db '/sys/t1.png',0
struct FileInfoBlock
Function dd ?

View File

@@ -83,7 +83,7 @@ coffobj_t * mcoff_load_file(char * fname)
/* We just search some paths if it is relative */
if(fname[0]!='/')
{
sz=open_on_path("/RD/1",fname);
sz=open_on_path("/SYS",fname);
if(sz>64 && sz<0x1000000) goto OK; /* Max 16MB for DLL */
sz=open_on_path("/HD/1/MENUETOS",fname);
if(sz>64 && sz<0x1000000) goto OK; /* Max 16MB for DLL */

View File

@@ -92,7 +92,7 @@ int __stdcall start(int state)
srv_hw2d = get_service("HDRAW");
if(srv_hw2d == 0)
srv_hw2d = load_service("/rd/1/drivers/ati2d.drv");
srv_hw2d = load_service("/sys/drivers/ati2d.drv");
return TRUE;
};

View File

@@ -175,7 +175,7 @@ macro fix_cwd path
add esp, 12
}
szPxlib db '/rd/1/lib/pixlib.obj',0
szPxlib db '/sys/lib/pixlib.obj',0
szStart db 'START',0
szVersion db 'version',0