git-svn-id: svn://kolibrios.org@9537 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Kirill Lipatov (Leency) 2021-12-31 00:35:57 +00:00
parent 3e9224b667
commit a037fae1d9
4 changed files with 10 additions and 13 deletions

View File

@ -124,7 +124,6 @@ void PasteThread()
int paste_elements_count = 0; int paste_elements_count = 0;
dword clipbuf; dword clipbuf;
dword path_offset; dword path_offset;
dword copy_state_ex = 0;
clipbuf = Clipboard__GetSlotData(Clipboard__GetSlotCount()-1); clipbuf = Clipboard__GetSlotData(Clipboard__GetSlotCount()-1);
if (DSDWORD[clipbuf+4] != 3) return; if (DSDWORD[clipbuf+4] != 3) return;

View File

@ -47,8 +47,11 @@ void DisplayOperationForm(int operation_flag)
} }
copy_bar.frame_color = sc.work_graph; copy_bar.frame_color = sc.work_graph;
if (copy_state == FILE_EXISTS) event_mode = #WaitEvent; if (copy_state == FILE_EXISTS) {
else event_mode = #CheckEvent; event_mode = #WaitEvent;
} else {
event_mode = #CheckEvent;
}
event_mode(); event_mode();
switch(EAX) switch(EAX)
{ {
@ -75,7 +78,6 @@ void DisplayOperationForm(int operation_flag)
if (remember_choice.click(EAX+1)) { if (remember_choice.click(EAX+1)) {
is_remember = remember_choice.checked; is_remember = remember_choice.checked;
} }
break;
} }
break; break;
case evReDraw: case evReDraw:

View File

@ -14,11 +14,6 @@ enum {
FILE_SKIP, FILE_SKIP,
}; };
enum {
MODE_NORMAL,
MODE_FORCE
};
#define WRITE_ERROR_DEBUG 0 #define WRITE_ERROR_DEBUG 0
#define WRITE_ERROR_NOTIFY 1 #define WRITE_ERROR_NOTIFY 1
:int writing_error_channel = WRITE_ERROR_DEBUG; :int writing_error_channel = WRITE_ERROR_DEBUG;

View File

@ -21,16 +21,17 @@
EDX = x<<16+y; EDX = x<<16+y;
ESI = 0x90<<24+color; ESI = 0x90<<24+color;
ECX = EDI.date.day; ECX = EDI.date.day;
$int 0x40; $int 64
EDX += 20<<16; EDX += 20<<16;
ECX = EDI.date.month; ECX = EDI.date.month;
$int 0x40; $int 64
EDX += 20<<16; EDX += 20<<16;
EBX = 4<<16; EBX = 4<<16;
ECX = EDI.date.year; ECX = EDI.date.year;
$int 0x40; $int 64
DrawBar(x+17,y+10,2,2,color); DrawBar(x+17,y+10,2,2,color);
DrawBar(x+37,y+10,2,2,color); $add ebx, 20 << 16
$int 64
} }
#endif #endif