// nは0〜255の値
int patanko(int x, int y, int width, int height, int id, int n){
int h = height * n / 255;
return DrawExtendGraph(x, y + height - h, x + width, y + height, id, true);
}
こんな感じの関数を作ったのですが、意図したとおりに表示されないのです。
x, y, width, heightの値が変わらなければ、右下の座標は変わらない筈なんですが、
下にずれて表示されます
x = 72, y = 256, w = 1000, h = 296
id = MakeScreen(1000, 296, true);