This commit is contained in:
ZakatTeamI2P 2026-05-20 19:22:55 +04:00
parent 245b7f7153
commit f74e3372cd
2 changed files with 3 additions and 3 deletions

View file

@ -18,7 +18,7 @@ if(DEBUG)
if (MSVC)
add_compile_options(/EHr /fsanitize /validate-charset /DEBUG /RTCu /RTCs /RTCc /guard:cf /GS)
else()
add_compile_options(-g3 -O0 -fno-omit-frame-pointer -ggdb -Wall -fcheck-new -gbtf -ggnu-pubnames -fexceptions)
add_compile_options(-g3 -O0 -fno-omit-frame-pointer -ggdb -Wall -fcheck-new -gbtf)
endif()
else()
# Optimization stuff

View file

@ -108,7 +108,7 @@ RB_METHOD(bitmapBlt){
int x, y;
VALUE srcObj;
VALUE srcRectObj;
unsigned short opacity = 255;
int opacity = 255;
Bitmap *src;
Rect *srcRect;
@ -129,7 +129,7 @@ RB_METHOD(bitmapStretchBlt){
VALUE destRectObj;
VALUE srcObj;
VALUE srcRectObj;
unsigned short opacity = 255;
int opacity = 255;
Bitmap *src;
Rect *destRect, *srcRect;