mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 21:39:57 +00:00
FIX!
This commit is contained in:
parent
245b7f7153
commit
f74e3372cd
2 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue