1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

fixed the bug with smart range

This commit is contained in:
Zeno Rogue 2024-05-31 19:18:08 +02:00
parent 2314eaba29
commit 7af403490a
2 changed files with 2 additions and 3 deletions

View File

@ -1461,7 +1461,6 @@ EX void initConfig() {
param_b(texture::texture_aura, "texture-aura", false);
#endif
param_i(vid.use_smart_range, "smart-range", 0);
param_f(vid.smart_range_detail, "smart-range-detail", 8)
->editable(1, 50, 1, "minimum visible cell in pixels", "", 'd')
->set_extra([] { add_cells_drawn('C'); });

View File

@ -13,8 +13,8 @@
#define _HYPER_H_
// version numbers
#define VER "13.0l"
#define VERNUM_HEX 0xAA0C
#define VER "13.0m"
#define VERNUM_HEX 0xAA0D
#include "sysconfig.h"