お久しぶりです
DrawCircleAA のサンプルプログラムとは関数リファレンスにあるこちらのことでしょうか?
<DrawCircleAA>
https://dxlib.xsrv.jp/function/dxfunc_graph0.html#R2N3_A
#include "DxLib.h"
int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow )
{
unsigned int Cr ;
if( DxLib_Init() == -1 ) // DXライブラリ初期化処理
{
return -1; // エラーが起きたら直ちに終了
}
Cr = GetColor( 0 , 0 , 255 ) ; // 青色の値を取得
// 円を描画
DrawCircleAA( 320.0f , 240.0f , 150.0f , 32 , Cr , FALSE ) ;
WaitKey() ; // キーの入力待ち(『WaitKey』を使用)
DxLib_End() ; // DXライブラリ使用の終了処理
return 0 ; // ソフトの終了
}
こちらのプログラムでしたら posnum として 32 が渡されていますので
コンパイルエラーは発生しません
もしかしてこちらではない別の DrawCircleAA のサンプルのことでしょうか? (・・;