mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-09-01 10:17:56 +00:00
ads:: fixed disk scale
This commit is contained in:
@@ -236,8 +236,8 @@ void init_ds_game() {
|
||||
/* also create shape_disk */
|
||||
shape_disk.clear();
|
||||
for(int d=0; d<=360; d += 15) {
|
||||
shape_disk.push_back(sin(d*degree) * 0.1 * ds_scale);
|
||||
shape_disk.push_back(cos(d*degree) * 0.1 * ds_scale);
|
||||
shape_disk.push_back(sin(d*degree) * 0.1);
|
||||
shape_disk.push_back(cos(d*degree) * 0.1);
|
||||
}
|
||||
|
||||
rockgen.cshift += 2;
|
||||
|
Reference in New Issue
Block a user