update autolinks for raylib-drawing
This commit is contained in:
parent
cd6e5719b7
commit
2e5f666411
1
NEWS.md
1
NEWS.md
|
@ -7,6 +7,7 @@ Red Panda C++ Version 1.0.10
|
||||||
- fix: can't goto to definition of std::endl
|
- fix: can't goto to definition of std::endl
|
||||||
- fix: errors in the calculation of cut limit
|
- fix: errors in the calculation of cut limit
|
||||||
- enhancement: new turtle library based on raylib ( so it can be used under linux)
|
- enhancement: new turtle library based on raylib ( so it can be used under linux)
|
||||||
|
- fix: autolink calculation not stable
|
||||||
|
|
||||||
Red Panda C++ Version 1.0.9
|
Red Panda C++ Version 1.0.9
|
||||||
- fix: selection in column mode not correctly drawn when has wide chars in it
|
- fix: selection in column mode not correctly drawn when has wide chars in it
|
||||||
|
|
|
@ -32,11 +32,11 @@
|
||||||
"links": "-lraylib -lopengl32 -lgdi32 -lwinmm"
|
"links": "-lraylib -lopengl32 -lgdi32 -lwinmm"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"header": "rdrawing",
|
"header": "rdrawing.h",
|
||||||
"links": "-lrdrawing"
|
"links": "-lrdrawing"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"header": "rturtle",
|
"header": "rturtle.h",
|
||||||
"links": "-lrturtle"
|
"links": "-lrturtle"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -19,7 +19,7 @@ int main() {
|
||||||
}
|
}
|
||||||
lt(360.0/n);
|
lt(360.0/n);
|
||||||
}
|
}
|
||||||
pause();
|
waitClick();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
Loading…
Reference in New Issue